* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Poppins Font Face Declarations */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #F4F4F4;
    min-height: 100vh;
    color: #253238;
    overflow-x: hidden;
}

/* Page Wrapper - Flex Layout */
.page-wrapper {
    display: flex;
    min-height: calc(100vh - 62px);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Main Navigation - Top Bar */
.main-navigation {
    background-color: white;
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 14px 48px;
    width: 100%;
    position: relative;
}

.nav-logo {
    height: 34.333px;
    position: relative;
    flex-shrink: 0;
}

.logo-image {
    height: 100%;
    width: auto;
    max-width: 103px;
}

.nav-divider {
    background-color: #1E1E21;
    width: 1px;
    height: 1px;
    flex-shrink: 0;
}

.nav-links-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 1px;
    min-width: 1px;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.nav-button {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 8px 0;
    position: relative;
    border-radius: 100px;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-button:hover {
    opacity: 0.8;
}

.nav-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
}

.nav-button-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.37;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #54A192;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.top-navigation {
    background-color: white;
}

/* Left Sidebar */
.sidebar {
    width: 250px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: sticky;
    top: 0;
    height: 100vh;
}

.logo {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: 1;
}

.logo-hd {
    color: #253238;
}

.logo-o {
    color: white;
    position: relative;
    display: inline-block;
}

.logo-o::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-link {
    color: #2196F3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1976D2;
    text-decoration: underline;
}

/* Content Wrapper - Main Layout */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    background-color: #F4F4F4;
}

/* Header Section */
.content-header {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    max-width: 785px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.37;
    color: #253238;
    text-align: center;
    margin: 0;
}

.page-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.37;
    color: #455A64;
    text-align: center;
    margin: 0;
    max-width: 1080px;
}

/* Form Card */
.form-card {
    background: white;
    border: 2px solid #54A192;
    border-radius: 0;
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 48px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.form-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.37;
    color: #212427;
    margin: 0;
}

.form-fields-group {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.form-control-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.37;
    color: #455A64;
    letter-spacing: 1.6px;
    margin: 0;
}

.form-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.37;
    color: #455A64;
    margin: 0;
}

.form-input {
    background: white;
    border: 1px solid #455A64;
    border-radius: 8px;
    padding: 8px 24px;
    min-height: 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.37;
    color: #455A64;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #54A192;
    box-shadow: 0 0 0 2px rgba(84, 161, 146, 0.2);
}

.form-input::placeholder {
    color: #455A64;
    opacity: 0.6;
}

/* Address Section */
.address-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.address-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.37;
    color: #000000;
    margin: 0;
}

.address-fields-group {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.address-row {
    display: flex;
    gap: 32px;
    width: 100%;
}

.address-field {
    flex: 1;
    min-width: 0;
}

/* Form Footer */
.form-footer {
    border-top: 1px solid #CBD6DB;
    padding: 16px 48px;
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.checkbox-group {
    flex: 1;
}

.btn-submit {
    background-color: #54A192;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 32px;
    min-height: 64px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.37;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: none;
}

.btn-submit--small {
    min-height: 40px;
    padding: 8px 20px;
    font-size: 14px;
    letter-spacing: 1.2px;
    flex: 0;
}

.btn-submit:hover {
    background-color: #458276;
}

.btn-submit:active {
    transform: translateY(1px);
}

/* Legacy Button Styles (for compatibility) */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #69C9B5;
    color: white;
    margin-top: 10px;
    width: 100%;
}

.btn-primary:hover {
    background-color: #54A192;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(105, 201, 181, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Alert Messages */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    animation: slideDown 0.3s ease-out;
    max-width: 1080px;
    width: 100%;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background-color: #DBE8F1;
    color: #253238;
    border: 1px solid #9DD6CA;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-message {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 4px;
    font-weight: 500;
}

.required {
    color: #e74c3c;
}

/* Checkbox Styles */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #253238;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #69C9B5;
    flex-shrink: 0;
}

.checkbox-text {
    user-select: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 32px 16px;
        gap: 32px;
    }

    .form-content {
        padding: 32px 24px;
        gap: 48px;
    }

    .form-fields-group {
        gap: 32px;
    }

    .address-row {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 24px 16px;
        gap: 24px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 18px;
    }

    .form-content {
        padding: 24px 16px;
        gap: 32px;
    }

    .form-section {
        gap: 32px;
    }

    .form-section-title,
    .address-section-title {
        font-size: 24px;
    }

    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .content-wrapper {
        padding: 16px;
        gap: 24px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .form-content {
        padding: 20px 16px;
        gap: 24px;
    }

    .form-section-title,
    .address-section-title {
        font-size: 20px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-description {
        font-size: 13px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 12px 24px;
        min-height: 48px;
    }
}

/* Email Verification Page Styles */
.email-verification-wrapper {
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 62px);
}

.email-verification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 785px;
    width: 100%;
}

.verification-header {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
}

.verification-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.37;
    color: #455A64;
    text-align: center;
    margin: 0;
}

.verification-message {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1080px;
}

.verification-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.37;
    color: #455A64;
    margin: 0;
    width: 100%;
}

.verification-text strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.email-verification-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 785px;
    width: 100%;
}

.error-text {
    color: #e74c3c;
}

/* Responsive Design for Email Verification */
@media (max-width: 768px) {
    .email-verification-wrapper {
        padding: 32px 24px;
    }

    .verification-title {
        font-size: 28px;
    }

    .verification-text {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .email-verification-wrapper {
        padding: 24px 16px;
    }

    .verification-title {
        font-size: 24px;
    }

    .verification-text {
        font-size: 18px;
    }
}

/* Downloads Page Styles */
.downloads-wrapper {
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.download-header {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
}

.download-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.downloads-card {
    max-width: 1080px;
    width: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.download-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.download-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.37;
    color: #000000;
    margin: 0;
    text-align: center;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.download-option {
    background: white;
    border: 1px solid #7F96A1;
    border-radius: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.download-option-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.platform-icon {
    width: 104px;
    height: 35px;
    max-width: 120px;
    max-height: 40.77px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Windows Logo */
.windows-logo {
    width: 104px;
    height: 35px;
    gap: 2px;
}

.windows-square {
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

/* Mac Logo */
.mac-logo {
    width: 104px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mac-logo svg {
    width: 100%;
    height: 100%;
}

/* Mobile Download Badges */
.google-play-badge,
.app-store-badge {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-play-badge svg,
.app-store-badge svg {
    width: 100%;
    height: 100%;
}

.empty-downloads {
    text-align: center;
    padding: 40px 20px;
    color: #7F96A1;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.download-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.software-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.37;
    color: #000000;
    margin: 0;
}

.platform-version {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.37;
    color: #000000;
}

.download-button {
    background-color: #54A192;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    min-height: 32px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.37;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.download-button:hover {
    background-color: #458276;
    transform: translateY(-1px);
}

.download-button:active {
    transform: translateY(0);
}

.download-button-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.mobile-download-options {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-download-button {
    width: 120px;
    height: 40px;
    max-height: 40.77px;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.mobile-download-button:hover {
    transform: scale(1.05);
}

.mobile-download-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design for Downloads */
@media (max-width: 768px) {
    .downloads-wrapper {
        padding: 32px 24px;
        gap: 32px;
    }

    .downloads-card {
        padding: 32px 24px;
        gap: 32px;
    }

    .download-header {
        flex-direction: column;
        gap: 12px;
    }

    .download-option {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .download-option-content {
        width: 100%;
    }

    .download-button {
        width: 100%;
    }

    .mobile-download-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .downloads-wrapper {
        padding: 24px 16px;
        gap: 24px;
    }

    .downloads-card {
        padding: 24px 16px;
        gap: 24px;
    }

    .download-section-title {
        font-size: 18px;
    }

    .software-name {
        font-size: 20px;
    }
}

/* Success Page Styles */
.success-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.success-message-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 984px;
}

.success-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.37;
    color: #455A64;
    margin: 0;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.37;
    color: #455A64;
    margin: 0;
    text-align: center;
    width: 100%;
}

/* Admin table layout */
.admin-table-card {
    padding: 24px 32px 32px;
}

.table-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #CBD6DB;
    margin-bottom: 16px;
}

.table-toolbar-left {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.table-count-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #7F96A1;
}

.table-count-value {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #253238;
}

.table-toolbar-right {
    display: flex;
    align-items: center;
}

.table-search-form {
    display: flex;
    align-items: center;
}

.table-search-input {
    max-width: 320px;
    padding-top: 6px;
    padding-bottom: 6px;
    min-height: 40px;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.data-table thead tr {
    background-color: #F4F4F4;
}

.data-table th,
.data-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #CBD6DB;
    text-align: left;
}

.data-table th {
    font-weight: 600;
    color: #455A64;
    white-space: nowrap;
}

.data-table tbody tr:nth-child(even) {
    background-color: #FAFAFA;
}

.data-table tbody tr:hover {
    background-color: #F0F5F3;
}

.email-highlight {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.action-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    max-width: 768px;
}

.action-prompt {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.37;
    color: #253238;
    text-align: center;
    width: 100%;
    margin: 0;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.inline-form {
    width: 100%;
    margin: 0;
}

.btn-resend-email {
    background: white;
    border: 1px solid #458276;
    border-radius: 8px;
    padding: 8px 16px;
    min-height: 48px;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.37;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #54A192;
}

.btn-resend-email:hover {
    background-color: #F5F5F5;
    border-color: #54A192;
}

.btn-resend-email:active {
    transform: translateY(1px);
}

.btn-edit-email {
    background: transparent;
    border: none;
    border-radius: 100px;
    padding: 8px 0;
    min-height: 48px;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.37;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #54A192;
    text-decoration: none;
}

.btn-edit-email:hover {
    background-color: #F5F5F5;
}

.btn-edit-email:active {
    transform: translateY(1px);
}

.btn-icon {
    flex-shrink: 0;
    display: block;
}

.heading-3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.37;
    font-family: 'Poppins', sans-serif;
    color: #253238;
}

.heading-4 {
    /* heading-4 */
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 137%; /* 32.88px */
}

.label-md {
    /* label-md */
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 137%; /* 21.92px */
    letter-spacing: 1.6px;
}

.body-md {
    /* body-md */
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137%; /* 21.92px */
}

.body-sm {
    /* body-sm */
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 137%; /* 19.18px */
}

.basic-dark {
    color: #212427;
}

.typo-color {
    color: #253238;
}

/* Admin header actions */
.header-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.header-actions--stacked {
    align-items: flex-end;
}

/* Admin sub navigation */
.admin-nav {
    max-width: 1080px;
    width: 100%;
    margin: 16px auto 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-nav-link {
    background: transparent;
    border-radius: 999px;
    padding: 6px 16px;
    border: 1px solid transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #54A192;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.admin-nav-link:hover {
    background-color: #F5F5F5;
    border-color: #CBD6DB;
}

.admin-nav-link--active {
    background-color: #54A192;
    border-color: #54A192;
    color: #ffffff;
}

/* Admin header layout override */
.admin-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.admin-header .header-content {
    align-items: flex-start;
    text-align: left;
}

@media (max-width: 768px) {
    .admin-header {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .admin-header .header-content {
        align-items: center;
        text-align: center;
    }
}