svg {width: 95%;height: 95%;}

.min-h-screen{
    min-height: 100vh;
}



.post-detail{

}
.post-detail .post-banner{
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}


.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.login-page{
    max-width:400px;
    margin: 0 auto;
    padding:80px 0px;
}

.login-page .login-form{
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.form-label{
    font-weight: 500;
    color: #212529;
    display:block;
     width:100%;
}
.form-control{
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    display:block;
    width:100%;
}

.language-switcher{
    padding:0.75rem;  
}
.language-switcher li{
    padding:0px 10px;
}

@media (max-width: 600px) {
    .language-switcher {
        display: flex;
        justify-content: center;
        padding: 0.5rem 0;
    }
    .language-switcher li {
        padding: 0 5px;
        font-size: 0.95rem;
    }
}


.justify-content-center {
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.375rem;
}

.page-item {
    margin: 0 2px;
}

.text-center{
    text-align: center;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    color: #56773f;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: color 0.15s, background-color 0.15s, border-color 0.15s;
}

.page-link:hover {
    color: #56773f;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #56773f;
    border-color: #56773f;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}