/* Login Button Styles */
.mauk-login-button {
    width: 100%;
    padding: 12px 20px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    display: block;
}

.mauk-login-button:hover {
    background-color: #005a87;
}

/* Logout Button Styles */
.mauk-logout-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #dc3232;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    width: auto;
    min-width: 80px;
    max-width: 120px;
    text-align: center;
}

.mauk-logout-button:hover {
    background-color: #a00;
}



.button-primary {
    background: #2271b1;
    border-color: #2271b1;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    height: auto;
}

.button-primary:hover {
    background: #135e96;
    border-color: #135e96;
}






.mauk-teacher-dashboard .button-primary {
    background: #2271b1;
    border-color: #2271b1;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    height: auto;
}

.mauk-teacher-dashboard .button-primary:hover {
    background: #135e96;
    border-color: #135e96;
}

.mauk-teacher-dashboard .button {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f0f1;
    border: 1px solid #dcdcde;
    border-radius: 3px;
    text-decoration: none;
    color: #2271b1;
    font-size: 13px;
    margin-right: 5px;
}

.mauk-teacher-dashboard .button:hover {
    background: #f6f7f7;
    border-color: #0a4b78;
    color: #0a4b78;
}

/* Button Styling in Tabs */
.mauk-tab-content .button-primary {
    font-size: 13px !important;
    padding: 8px 16px !important;
}

.mauk-tab-content .button {
    font-size: 12px !important;
    padding: 6px 12px !important;
}

/* CSV Export Button Styles */
.mauk-export-section {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.mauk-export-section h4 {
    margin-top: 0;
    color: #23282d;
}

.mauk-export-section .description {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
}