/* style.css - Master Stylesheet for AKSARA Project */

/* 1. Global Reset & Typography */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* 2. Header & Top Navigation */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    width: 150px;
}

.search {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.search input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.search-bar {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin-bottom: 15px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.nav a:hover {
    text-decoration: underline;
}

#noResultsMessage {
    display: none;
    text-align: center;
    width: 100%;
    padding: 40px;
    font-size: 20px;
    color: red;
    font-weight: bold;
    background-color: #ffe6e6;
    border: 2px solid red;
    margin-top: 20px;
}

.category {
    background: linear-gradient(to right, #1e3a5f, #4f87d1);
    padding: 15px;
    text-align: center;
}

.category a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold;
}

.category a:hover {
    transform: translateY(-5px);
}

/* Sub-Category Bar */
.sub-category-bar {
    background-color: #d1dfec;
    padding: 15px;
    text-align: center;
    display: none;
    border-bottom: 2px solid #b3cadd;
}

.show-sub-category {
    display: block;
}

.genre-label {
    color: #1e3a5f;
    font-weight: bold;
    font-size: 16px;
    margin-right: 15px;
    text-transform: uppercase;
}

.genre-link {
    color: #1e3a5f;
    text-decoration: none;
    padding: 8px 15px;
    margin: 0 10px;
    display: inline-block;
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.genre-link:hover {
    border: 2px solid #1e3a5f;
    background-color: white;
}

/* =========================================
   USER HOME PAGE
   ========================================= */
.main-container {
    display: flex;
    transition: all 0.3s ease;
    position: relative;
    min-height: 100vh;
    margin: 20px;
}

/* 10. Left Column (Books Display) */
.left-column {
    flex: 1;
    width: 100%;
}

.ad {
    margin: 20px;
    text-align: center;
}

.ad img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid black;
}

/* =========================================
   HOME BOOKS
   ========================================= */

.books {
    margin: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, 230px);
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
}

.book-card {
    width: 230px;
    height: 380px;
    background-color: white;
    padding: 15px;
    text-align: center;
    border: 5px outset #ddd;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Container for cover image - fixed size */
.book-cover {
    width: 100%;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    margin-bottom: 10px;
    background-color: #2d8abb;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Image inside book-cover - exact fit */
.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Placeholder text when no image */
.book-cover span {
    font-size: 18px;
}

.book-title {
    font-weight: bold;
    margin: 10px 0 5px 0;
    font-size: 16px;
}

/* =========================================
   EMPTY STATE MESSAGE
   ========================================= */

.empty-message {
    text-align: center;
    font-size: 15px;
    color: #666;
    font-style: italic;
    padding: 20px;
}

/* =========================================
   FAVOURITES BUTTON
   ========================================= */

.add-fav-btn {
    background-color: white;
    border: 2px solid black;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
}

.add-fav-btn:hover {
    background-color: #eee;
}

/* =========================================
   SUPORT PAGE
   ========================================= */

.support {
    background: linear-gradient(to right, #1e3a5f, #4f87d1);
    margin-top:40px;
    padding: 40px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.support h3 {
    margin-bottom: 10px;
    font-size: 24px;
}
.support p {
    font-weight: normal;
    font-size: 16px;
}

/* =========================================
   FAVOURITES SIDEBAR
   ========================================= */

.right-column {
    width: 350px;
    padding: 20px;
    background-color: white;
    border-left: 2px solid #ddd;
    display: none;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 100;
    box-shadow: -5px 0 15px rgba(0,0,0,0.15);
}

.show-sidebar {
    display: flex;
}

/* ========== SIDEBAR HEADER WITH CLOSE BUTTON ========== */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid black;
    padding-bottom: 10px;
    margin-bottom: 20px;
    gap: 10px;
}

.sidebar-header .sidebar-title-main {
    margin: 0;
    border: none;
    padding: 0;
    flex: 1;
    
}

.close-sidebar-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    padding: 0;
    line-height: 1;
    color: #333;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-sidebar-btn:hover {
    color: red;
    background-color: #f5f5f5;
    border-radius: 50%;
}

/* Original sidebar title (when not using header) */
.sidebar-title-main {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid black;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
}

#favListContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#emptyMessage {
    color: #888;
    font-style: italic;
    text-align: center;
    margin-top: 20px;
}

.sidebar-item { 
    display: flex; 
    align-items: center; 
    position: relative; 
}

.sidebar-book-box { 
    border: 2px solid black; 
    width: 80px;
    height: 100px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background-color: #eee; 
    margin-right: 15px;
    overflow: hidden;
    padding: 0;
    flex-shrink: 0;
}

.sidebar-book-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-info { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}

.sidebar-title { 
    font-size: 14px; 
    margin-bottom: 10px; 
    text-transform: uppercase; 
    font-weight: bold; 
}
            
.review-btn { 
    border: 2px solid black; 
    border-radius: 15px; 
    padding: 5px 20px; 
    background-color: white; 
    cursor: pointer; 
    font-size: 12px; 
    font-weight: bold; 
}

.review-btn:hover { 
    background-color: #eee; 
}

/* =========================================
   lOGIN/SIGNUP
   ========================================= */
/* Headline Bar */
.Headline {
    background: linear-gradient( to right, #1e3a5f, #4f87d1);
    padding: 40px;
}

/* Login Form Styling */
.form-container {
    padding: 97.9px; 
    background-color: white;
}

/* Tab Buttons (User / Admin) */
.login-tabs {
    margin-bottom: 20px;
}

.tab-btn {
    padding: 8px 25px;
    border: 2px solid black;
    background: white;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 15px;
}

.tab-btn:hover {
    background-color: #eee;
}

.form-table {
    text-align: left;
    border-spacing: 0 5px; 
}

.form-table td {
    font-size: 14px;
}

.input-field {
    width: 350px;
    padding: 10px;
    border: 2px solid black;
    box-sizing: border-box; 
    margin-bottom: 10px; 
}

.submit-btn {
    padding: 8px 30px;
    border: 2px solid black;
    background: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.action-container {
    display: flex;
    align-items: center;
    padding-top: 15px;
}

.links-wrapper {
    margin-left: 30px;
    line-height: 1.6;
}

.form-link {
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.form-link:hover {
    text-decoration: underline;
}



.header-titles {
    text-align: center;
}

.header-titles h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 1px;
}

.header-titles p {
    margin: 0;
    font-size: 11px;
    color: #555;
}

/* 3. Dashboard Stats */
.stats-row {
    display: flex;
    gap: 30px;
    margin: 20px;
}

.stat-card {
    flex: 1;
    background-color: white;
    border: 3px outset #ddd;
    padding: 40px 20px;
    text-align: center;
    font-weight: bold;
}

/* 4. Tab Bar Navigation */
.tab-bar {
    background: linear-gradient(to right, #1e3a5f, #4f87d1);
    padding: 15px 20px;
    display: flex;
    gap: 10px;
}

.tab-bar a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 5px;
}

.tab-bar a:hover {
    background-color: white;
    color: #1e3a5f;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-title {
    background-color: #2d5ff0;
    color: white;
    padding: 7px 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

/* 6. Form Styling (Add & Edit) */
.form-box {
    background-color: white;
    border: 3px outset #ddd;
    padding: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: bold;
    font-size: 14px;
}

.form-group input,
.summary-section textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.summary-section textarea {
    height: 120px;
    resize: vertical;
}

/* 7. Buttons */
.add-btn,
.btn-cancel,
.btn-edit,
.btn-delete {
    background-color: white;
    border: 2px solid black;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    color: black;
    display: inline-block;
}

.btn-save {
    background-color: #2d5ff0;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* =========================================
   ADD NEW AUTHOR AND PUBLISHER
   ========================================= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 500px;
    overflow: hidden;
}

.modal-header {
    background-color: #1e3a5f;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-body {
    padding: 20px;
}

.modal-body .form-group {
    margin-bottom: 15px;
}

.modal-body .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #1e3a5f;
}

.modal-body input,
.modal-body textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.modal-body input:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: #4f87d1;
    box-shadow: 0 0 0 3px rgba(79, 135, 209, 0.15);
}

.modal-footer {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    background-color: #f5f5f5;
}

.btn-add-new {
    background-color: #4f87d1;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
}

.btn-add-new:hover {
    background-color: #1e3a5f;
}


button:hover,
.btn:hover {
    opacity: 0.8;
    background-color: #eee;
}

/* 8. Table Styling */
.book-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border: 3px outset #ddd;
}

.book-table thead tr {
    background: linear-gradient(to right, #1e3a5f, #4f87d1);
    color: white;
}

.book-table th,
.book-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}


/* =========================================
   USER PROFILE PAGE (User_other_profile.php)
   ========================================= */

/* --- Profile Navigation Override --- */
.profile-page .nav a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
}

/* --- Profile Category Bar --- */
.profile-page .category {
    background: linear-gradient(to right, #1e3a5f, #4f87d1);
    padding: 40px;
}

/* --- Profile Form --- */
.profile-form {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    padding: 10px;
}

.profile-form--single {
    justify-content: flex-start;
}

.form-column {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-field label {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

.profile-field input {
    width: 65%;
    padding: 5px;
    border: 2px solid black;
    background-color: #fafafa;
}

/* --- Favourites Fieldset --- */
.fav-fieldset {
    border: 2px solid black;
    margin: 20px;
    padding: 10px;
}

.fav-fieldset legend {
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 5px;
}



/* =========================================
   REVIEW/RATING BUTTON
   ========================================= */

.review-rating-btn {
    background-color: white;
    border: 2px solid black;
    padding: 8px 10px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    text-align: center;
    display: block;
    text-decoration: none;
    color: black;
}

.review-rating-btn:hover {
    background-color: #eee;
}

/* Static variant: no hover effect */
.review-rating-btn--static {
    cursor: default;
}

.review-rating-btn--static:hover {
    background-color: white;
}

.clear {
    clear: both;
}

.delete-btn { 
    position: absolute;
    top: 0; 
    right: 0; 
    background-color: red; 
    color: white; 
    border: none; 
    border-radius: 50%; 
    width: 25px; 
    height: 25px; 
    font-weight: bold; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.delete-btn:hover { 
    background-color: darkred; 
}

.see-all-link { 
    display: none; 
    margin-top: 20px; 
    text-align: center; 
    background-color: #1e3a5f; 
    color: white; 
    padding: 10px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
}

.see-all-link:hover { 
    background-color: #2d8abb; 
}

/* 12. Mobile Responsiveness */
@media (max-width: 768px) {
    .stats-row,
    .form-row {
        flex-direction: column;
    }
    
    .tab-bar {
        flex-wrap: wrap;
    }
    
    .book-table {
        display: block;
        overflow-x: auto;
    }
    
    .right-column {
        width: 100%;
        position: fixed;
    }
}



.Info-header { 
    padding: 15px 25px; 
    border-bottom: 2px solid #1e3a5f; 
    font-weight: 600; 
    font-size: 16px; 
    text-transform: uppercase; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: linear-gradient(to right, #1e3a5f, #4f87d1); 
    color: white; 
}

.comment-btn { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 14px; 
    text-transform: uppercase; 
    border: 2px solid white; 
    border-radius: 8px; 
    padding: 8px 16px; 
    background: transparent; 
    color: white; 
    transition: all 0.2s; 
}

.comment-btn:hover { 
    background: white; 
    color: #1e3a5f; 
}

/* Comment Popup Form */
.comment-popup { 
    display: none; 
    border: 2px solid #1e3a5f; 
    margin: 0 20px 20px 20px; 
    background: white; 
    animation: slideDown 0.3s ease-out; 
    border-radius: 4px; 
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.12); 
}

.comment-popup.active { display: block; }

@keyframes slideDown { 
    from { opacity: 0; transform: translateY(-10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.popup-content { display: flex; gap: 0; }

.popup-left { 
    border-right: 2px solid #1e3a5f; 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    min-width: 140px; 
    justify-content: center; 
    background: linear-gradient(to bottom, rgba(30, 58, 95, 0.04), rgba(79, 135, 209, 0.04)); 
}

.popup-left label { 
    font-weight: 600; 
    font-size: 14px; 
    text-transform: uppercase; 
    color: #1e3a5f; 
}

.popup-right { 
    flex: 1; 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.popup-right input[type="text"], 
.popup-right textarea { 
    width: 100%; 
    border: 2px solid #4f87d1; 
    padding: 12px; 
    font-family: inherit; 
    font-size: 14px; 
    outline: none; 
    border-radius: 4px; 
}

.popup-right input[type="text"]:focus, 
.popup-right textarea:focus { 
    background: #f8fafd; 
    border-color: #1e3a5f; 
    box-shadow: 0 0 0 3px rgba(79, 135, 209, 0.15); 
}

.popup-right textarea { 
    min-height: 80px; 
    resize: vertical; 
}

.popup-actions { 
    display: flex; 
    justify-content: flex-end; 
    align-items: center; 
    gap: 20px; 
}

.popup-actions label { 
    font-weight: 600; 
    font-size: 14px; 
    text-transform: uppercase; 
    color: #1e3a5f; 
}

.popup-actions input[type="number"] { 
    width: 60px; 
    height: 32px; 
    border: 2px solid #4f87d1; 
    text-align: center; 
    font-size: 14px; 
    font-weight: 600; 
    color: #1e3a5f; 
    border-radius: 4px; 
}

.popup-actions input[type="number"]:focus { 
    border-color: #1e3a5f; 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(79, 135, 209, 0.15); 
}

.send-btn { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 14px; 
    text-transform: uppercase; 
    border: 2px solid #1e3a5f; 
    border-radius: 6px; 
    padding: 8px 16px; 
    background: linear-gradient(to right, #1e3a5f, #4f87d1); 
    color: white; 
    transition: all 0.2s; 
}

.send-btn:hover { 
    background: white; 
    color: #1e3a5f; 
}

/* Reviews List */
.reviews-list { padding: 20px; }

.review-card { 
    border: 2px solid #1e3a5f; 
    padding: 20px; 
    margin-bottom: 20px; 
    background: white; 
    border-radius: 4px; 
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08); 
    transition: transform 0.2s, box-shadow 0.2s; 
}

.review-card:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12); 
}

.review-header { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    margin-bottom: 15px; 
    flex-wrap: wrap; 
}

.username { 
    font-weight: 600; 
    font-size: 14px; 
    text-transform: uppercase; 
}

.username a { color: #1e3a5f; text-decoration: none; }
.username a:hover { text-decoration: underline; color: #4f87d1; }

.rating-display { display: flex; align-items: center; gap: 8px; }

.rating-display span { 
    font-size: 14px; 
    text-transform: uppercase; 
    color: #1e3a5f; 
}

.rating-box { 
    width: 50px; 
    height: 28px; 
    border: 2px solid #4f87d1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 600; 
    color: #1e3a5f; 
    background: rgba(79, 135, 209, 0.08); 
    border-radius: 4px; 
}

.review-content { 
    padding: 10px 0; 
    font-size: 14px; 
    line-height: 1.6; 
    color: #333; 
    min-height: 40px; 
}

/* Utility / Status */
.empty-state { text-align: center; padding: 40px; color: #4f87d1; font-style: italic; }
.char-count { font-size: 12px; color: #666; text-align: right; margin-top: 4px; }
.char-count.warning { color: #dc3545; font-weight: 600; }
.error-msg { color: #dc3545; font-size: 13px; margin-top: 4px; font-weight: bold; text-align: center; }

.toast { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    background: #28a745; 
    color: white; 
    padding: 12px 20px; 
    border-radius: 6px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    transform: translateY(100px); 
    opacity: 0; 
    transition: all 0.3s ease; 
    z-index: 1000; 
    font-weight: 500; 
}

.toast.show { transform: translateY(0); opacity: 1; }

/* Responsive adjustments specific to Review System */
@media screen and (max-width: 768px) {
    .popup-content { flex-direction: column; }
    .popup-left { border-right: none; border-bottom: 2px solid #1e3a5f; min-width: auto; }
}

.main-content { 
    display: flex; 
    gap: 30px; 
    padding: 20px 30px; 
    max-width: 1400px; 
    margin: 0 auto; 
}

.container { 
    max-width: 900px; 
    margin: 0 auto; 
    background: white; 
    border: 2px solid #1e3a5f; 
    border-radius: 8px; 
    overflow: hidden; 
}

.btn-link { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    color: #000; 
    border: 2px solid #000; 
    border-radius: 8px; 
    padding: 10px 0; 
    background-color: #fff; 
    cursor: pointer; 
    font-size: 13px; 
    font-weight: bold; 
    text-align: center; 
    transition: all 0.2s ease; 
    flex: 1; 
}

.btn-link-small { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    color: #000; 
    border: 2px solid #000;
    border-radius: 8px; 
    padding: 6px 16px; 
    background-color: #fff; 
    cursor: pointer; 
    font-size: 12px; 
    font-weight: bold; 
    width: 100%; 
    transition: all 0.2s ease; 
    box-sizing: border-box; 
}

