
.body {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px;
    line-height: 1.5;
    color: #212529;
    background-color: #acd6ff !important;
    padding: 20px; /* Add padding for better readability */
    max-width: 800px; /* Limit the width to fit the Vapor layout */
    margin: 0 auto; /* Center the content horizontally */
}

.logo {
    background-color: #480072;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo:hover {
    background-color: #ff00ff;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}


.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 20px 0;
    justify-content: center;
}

.pagination .page-link {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
    color: #007bff;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid #ddd; /* Light grey border */
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination .page-link:hover {
    background-color: #f8f9fa;
    color: #0056b3; /* Darker blue on hover */
    text-decoration: none;
}

/* Optional: Adding cursor pointer */
.pagination .page-link {
    cursor: pointer;
}


.ck.ck-editor__editable {
    min-height: 300px;
    
}


.image-filemanger  {
    max-width: 50px;
    max-height: 50px;
    transition: transform 0.3s ease; /* Add transition property */
}

.image-filemanger:hover {
    transform: scale(2.5); /* Add scale on hover */
}


.post-featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.selectize-control.plugin-dropdown-header .dropdown-header,
.selectize-dropdown-content {
    padding: .375rem .75rem;
    font-size: 1rem;
}

.selectize-control {
    border: none;
    border-radius: .25rem;
    box-shadow: none;
}

.selectize-control.single .selectize-input {
    height: calc(1.5em + .75rem + 2px);
}

.selectize-dropdown {
    border-radius: .25rem;
    border: none;
}

.selectize-input {
    background-color: #000;
    color: #fff;
}

.selectize-input.focus {
    border-color: #fff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.selectize-input > .item,
.selectize-dropdown .option {
    padding: .25rem .75rem;
    background-color: #111;
    color: #fff;
}

.selectize-input > .item {
    margin: .2rem;
}

.selectize-input::placeholder {
    color: #999;
}
