pre.language-markup {
    max-height: 100%;
}

@media (min-width: 768px) {
    div.code-toolbar>.toolbar {
        display: block;
    }
}

.bg-zinc {    
    background-color: color-mix(in oklab, oklch(1 0 0) 80%, transparent);
}

.bg-zinc-dark {    
    background-color: color-mix(in oklab,oklch(.205 0 0)80%,transparent);
}

.bg-zinc-theme:hover {
    transition: 230ms all;
    background-color: oklch(.274 .006 286.033) !important;
}

/* Tailwind CSS ile shake animasyonu */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-0.5rem);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(0.5rem);
    }
}

.animate-shake {
    animation: shake 0.6s ease-in-out;
}

.ml-auto {
    margin-left: auto;
}

.ml-3 {
    margin-left: 3px !important;
}


@media(max-width: 840px) {
    .post-mr span{
        margin-right: 15px;
    }
    .post-mr a {
        margin-right: 15px;
    }
    .post-mt {
        margin-top: 10px;
    }
}