:root {
    --sidebar-width: 280px;
    --lavender: #c6b1ff;
    --lavender-dark: #9373ff;
    --violet: #5a3aff;
    --gray-50: #f9fafc;
    --gray-100: #f4f6fb;
    --gray-200: #e9ecf6;
    --gray-300: #d6daeb;
    --gray-400: #cbd2e0;
    --gray-600: #6b7190;
    --gray-900: #21243b;
    --white: #ffffff;
    --accent: #ff671f;
    --accent-soft: rgba(255, 103, 31, 0.14);
    --success: #2bb673;
    --success-soft: rgba(43, 182, 115, 0.12);
    --warning: #ff9c35;
    --warning-soft: rgba(255, 156, 53, 0.12);
    --shadow-soft: 0 32px 65px -52px rgba(33, 39, 53, 0.55);
    --font-base: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
    --accent-light: #fde7d8;
    --muted: #f8f0e6;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", "Raleway", "Inter", 'Segoe UI', sans-serif;
    background: var(--gray-100);
    color: var(--gray-900);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Layout */
.app-shell {
    display: flex;
    /*min-height: 100vh;
    height: 100vh;*/
    overflow: hidden;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 28px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-brand {
    font-size: 15px;
    background: linear-gradient(120deg, #fff, #fff);
    border-radius: 22px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a2463;
    font-weight: 700;
    box-shadow: -1px -1px 6px rgb(252 104 33 / 37%);
}

.sidebar-brand img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px;
}

.nav-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
}

.nav-item svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.nav-item.active,
.nav-item:hover {
    background: #eee;
    color: #0a2463;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
}

.logout-link {
/*    background: transparent;*/
    display: inline-flex;
    align-items: center;
    border: none !important;
    gap: 12px;
    font-weight: 600;
/*    color: #0a2463;*/
    text-decoration: none;
    cursor: pointer;
}

.logout-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.main-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--gray-100);
    overflow: hidden;
    min-height: 100vh;
}

.topbar {
    padding: 28px 40px 56px;
    color: var(--white);
    font-weight: 600;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.topbar-link svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 4px;
}

.content-wrapper {
    margin-top: -40px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background:#ffffff;
}
.profile-inputs .user-value{
	margin-left: 34px;
    color: #5f6470;
}
button.btn-saved {
    border: none;
    background: transparent;
}
/* Section Cards */
.section-card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0px 10px 6px 0 #0000001A;
    padding: 30px 27px 36px;
    border: 1px solid #E5E7EB;
}

.section-card__header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

.section-card__header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.section-card__header p {
    margin: 6px 0 0;
    color: #5f6470;
    font-size: 15px;
    font-weight: 500;
}

.icon-circle {
    width: 52px;
    height: 52px;
    color: #ff8d34;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px 98px;
}

.overview-item {
    display: flex;
    gap: 5px;
}

.overview-item__icon {
    width: 44px;
    height: 44px;
    color: #ff8d34;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.overview-item__label {
    font-size: 17px;
    color: #111827;
    font-weight: 600;
    font-family: "Raleway", sans-serif !important;
    margin: 0 0 4px;
}

.overview-item__value {
    margin: 0;
    font-size: 14px;
    color: #5f6470;
    line-height: 1.55;
}

/* Status Components */
.status-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.status-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 28px 32px;
    border-radius: 24px;
    background: rgba(43, 182, 115, 0.12);
    border: 1px solid rgba(43, 182, 115, 0.2);
}

.status-banner.pending {
    background: rgba(255, 198, 96, 0.18);
    border-color: rgba(255, 156, 53, 0.3);
}

.status-banner__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1f8b55;
    box-shadow: 0 18px 32px -24px rgba(43, 182, 115, 0.65);
}

.status-banner.pending .status-banner__icon {
    color: #b36205;
    box-shadow: 0 18px 32px -24px rgba(255, 156, 53, 0.55);
}

.status-banner__label {
    font-size: 17px;
    color: #22C55E;
    font-family: Raleway, sans-serif;
    font-weight: 600;
}

.status-banner.pending .status-banner__label {
    color: #b36205;
}

.status-banner__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.status-banner__title {
    margin: 8px 0 0;
    font-size: 26px;
    font-weight: 700;
    color: #137845;
}

.status-banner.pending .status-banner__title {
    color: #b36205;
}

.status-banner__helper {
    margin: 12px 0 0;
    font-size: 15px;
    color: #22C55E;
    font-weight: 400;
    font-family: Raleway, sans-serif;
}

.status-banner.pending .status-banner__helper {
    color: rgba(179, 98, 5, 0.78);
}

.status-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    justify-self: end;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    border: 1px solid transparent;
}

.status-pill.confirmed {
    background: #22C55E;
    color: #FFFFFF;
    justify-self: end;
}

.status-pill.pending {
    background: rgba(255, 198, 96, 0.22);
    color: #b36205;
    border-color: rgba(255, 156, 53, 0.35);
    box-shadow: 0 18px 28px -22px rgba(255, 156, 53, 0.35);
}

.status-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.status-summary-item {
    padding: 20px 24px;
    border-radius: 20px;
    border: 1px solid rgba(241, 228, 213, 0.8);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    box-shadow: inset 0 -1px 0 rgba(241, 228, 213, 0.6);
}

.status-summary-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8890a0;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 4px;
}

.status-summary-item strong {
    font-size: 17px;
    color: #1d2130;
    font-weight: 600;
}

.status-summary-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 141, 52, 0.16);
    color: #ff8d34;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 141, 52, 0.24);
    margin-bottom: 12px;
}

.status-banner__cta {
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 22px 36px -20px rgba(255, 96, 32, 0.65);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}

.status-banner__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 28px 50px -26px rgba(255, 96, 32, 0.75);
}

/* Next Steps Card */
.next-steps-card {
    font-size: 14px;
    margin-top: 24px;
    background: linear-gradient(to right, #FFF7ED, #FFEDD5);
    border-radius: 16px;
    padding: 17px 60px 0px;
    text-align: center;
    font-weight: 500;
    font-style: italic;
    color: #111827;
    border: 1px solid rgba(251, 134, 25, 0.28);
}

.next-steps-card .section-card__header h2 {
    color: #ffffff;
}

.next-steps-card .section-card__header p {
    color: #5f6470;
}

.next-steps-card .icon-circle {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

/* CTA Buttons */
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-button.primary {
    background: #ffffff;
    color: #ff5715;
    box-shadow: 0 16px 35px -20px rgba(0, 0, 0, 0.35);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px -20px rgba(0, 0, 0, 0.35);
}

.cta-button span {
    font-size: 18px;
}

/* Profile Card */
.profile-card {
    background: var(--white);
    padding: 48px 36px 40px;
/*    box-shadow: 0 32px 65px -55px rgba(33, 39, 53, 0.65);*/
/*    border: 1px solid rgba(255, 217, 188, 0.65);*/
}
.profile-card .profile-hero {
    background: #fde9dd;
    border-radius: 18px;
    padding: 25px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(255, 217, 188, 0.8);
    box-shadow: 0 28px 65px -50px rgba(33, 39, 53, 0.45);
}

.profile-card .profile-hero h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
}

.profile-card .profile-hero p {
    margin: 6px 0 0;
    color: var(--gray-600);
    font-weight: 500;
}

.profile-card .profile-hero button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 13px 22px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Raleway", "Poppins", sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 18px 32px -18px rgba(255, 103, 30, 0.75);
}

.profile-card .profile-hero button:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -24px rgba(255, 103, 30, 0.9);
}

.profile-card .profile-layout {
    margin-top: 75px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: flex-start;
}

.profile-main-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-sidecard {
    background: var(--white);
    border-radius: 16px;
    padding: 38px 32px 44px;
    box-shadow: 0px 10px 6px 0 #0000001A;
    text-align: center;
    border: 1px solid #ddd;
    height: 330px;
}

.main-sidebarwrap {
    display: flex;
    align-items: center;
}

.main-sidebarwrap .name {
    margin-left: 30px;
}

.main-sidebarwrap .profile-actions {
    margin-top: 8px;
}

.fullwidth-btn a {
    width: 65%;
    background: #ff671f !important;
    color: #fff !important;
}

.download_cerbtn {
    margin-top: 18px !important;
}

.main-borderline {
    border: 1px solid #D2D2D2;
    margin-top: 25px;
}

.profile-sidecard .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 36px 36px -32px rgba(1, 14, 39, 0.45);
    background: rgba(255, 103, 30, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 48px;
    font-weight: 700;
}

.profile-sidecard .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-sidecard__name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.profile-sidecard__email {
    font-size: 18px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

.profile-sidecard .name {
    text-align: left;
    word-break: break-word;
    font-size: 18px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
}

.profile-sidecard .code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    border-radius: 12px;
    padding: 0px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

.profile-sidecard .status::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
}

.profile-actions {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.profile-actions a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.profile-actions .action-btn {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 103, 30, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.profile-actions .action-btn--primary {
    background: transparent;
    color: #ff671f;
    border: 2px solid #ff671f;
    box-shadow: 0 14px 26px -22px rgba(255, 103, 30, 0.55);
}

.profile-actions .action-btn--primary:hover {
    background: transparent;
    color: #ff671f;
    border: 2px solid #ff671f;
    box-shadow: 0 14px 26px -22px rgba(255, 103, 30, 0.55);
}

.profile-actions .action-btn--ghost {
    background: #22C55E;
    color: #fff;
    border: 1px solid rgba(43, 182, 115, 0.2);
}

.profile-actions .action-btn--ghost:hover {
    background: #22C55E;
    color: #fff;
    border: 1px solid rgba(43, 182, 115, 0.2);
}

.profile-actions .btn-edit {
    background: #ff671e;
    color: #fff;
    border: 1px solid rgba(43, 182, 115, 0.2);
    font-size: 15px;
    font-weight: 600;
}

.profile-actions .btn-edit:hover {
    background: #ff671e;
    color: #fff;
    border: 1px solid rgba(43, 182, 115, 0.2);
}

.profile-actions .btn-register {
    background: #ff671f;
    color: #fff;
    border: 2px solid #ff671f;
    box-shadow: 0 14px 26px -22px rgba(255, 103, 30, 0.55);
}

.profile-actions .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -16px rgba(255, 103, 30, 0.65);
}

.profile-details-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-panel {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0px 4px 6px 0px rgba(17, 24, 39, 0.35);
    border: 1px solid rgba(244, 229, 215, 0.6);
    padding: 32px 36px 36px;
}

.profile-panel header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.profile-panel h2 {
    font-family: "Raleway", sans-serif !important;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.profile-panel h2 span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #FFEDD5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 22px;
}

.profile-panel .fields {
    display: grid;
    gap: 24px 20px;
}

.profile-panel .fields.two-column {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.name-fields-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    grid-column: 1 / -1;
}

.profile-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.profile-field.password-popup {
    padding-bottom: 10px;
}

.profile-field label {
    font-size: 16px;
    color: #16171b;
    font-weight: 600;
    font-family: "Raleway", sans-serif !important;
}
.profile-input {
    border: 1px solid #ddd;
    border-radius: 9px;
    padding: 5px 13px 5px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.profile-input:focus-within {
    border-color: rgba(255, 122, 0, 0.65);
    box-shadow: 0 14px 26px -22px rgba(255, 122, 0, 0.55);
}

.profile-input input,
.profile-input select {
    border: none;
    background: transparent;
    font-size: 15px;
/*    font-weight: 500;*/
    color: #111827;
    width: 100%;
    outline: none;
}

.profile-input input[readonly] {
    color: #5f6470;
}

.profile-input .chip {
    margin-left: auto;
    cursor: pointer;
    background: rgba(255, 122, 0, 0.16);
    color: var(--accent);
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.profile-input .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: var(--accent);
}

.profile-hint {
    display: flex;
    justify-content: flex-start;
    font-size: 13px;
    color: #8f9195;
    background: #ffedd5;
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
    margin-top: 8px;
}

.profile-password input {
    color: #333741;
}

.profile-password input.is-visible {
    letter-spacing: normal;
}

.profile-password button {
    border: none;
    background: #fff;
    color: var(--accent);
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    width: 35px;
    height: 35px;
}

.profile-card .footer-note {
    font-size: 14px;
    margin-top: 24px;
    background: linear-gradient(to right, #FFF7ED, #FFEDD5);
    border-radius: 16px;
    padding: 14px 7px;
    text-align: center;
    font-weight: 500;
    font-style: italic;
    color: #111827;
    border: 1px solid rgba(251, 134, 25, 0.28);
}

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.alert-success {
    background: #e9f8ee;
    color: #1f8b55;
    border: 1px solid rgba(43, 182, 115, 0.24);
}

.alert-danger,
.alert-error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.24);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 32px;
    border-radius: 18px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 32px 65px -55px rgba(33, 39, 53, 0.65);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0px 0px 10px 1px !important;
    border-bottom: none !important;
}

.modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    color: var(--gray-900);
}

.close {
    color: var(--gray-600);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    font-weight: 300;
}

.close:hover {
    color: var(--gray-900);
}

/* Form Actions */
.form-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-submit {
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Raleway", "Poppins", sans-serif;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 18px 32px -18px rgba(255, 103, 30, 0.75);
}

.btn-submit:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -24px rgba(255, 103, 30, 0.9);
}

.btn-cancel {
    background: #ffffff;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Raleway", "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background: var(--gray-100);
    border-color: var(--gray-600);
}

/* Links */
a.change-password {
    text-decoration: none;
    color: #fe6825;
    padding-top: 8px;
    cursor: pointer !important;
}

a.btn.download_certificate {
    padding-top: 20px;
    color: #ff671f;
    cursor: pointer;
}

a.btn.download_certificate:active {
    background: transparent !important;
    border: none !important;
}

/*.resgiter_status {
    margin-top: 12px;
}*/

/* International Telephone Input */
.iti .iti__selected-dial-code {
    font-size: 15px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #fff;
    font-weight: 500 !important;
}

/* Media Queries */
@media (max-width: 1024px) {
    .app-shell {
        flex-direction: column;
        min-height: auto;
        height: auto;
        overflow: visible;
    }

    .sidebar {
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        position: static;
        height: auto;
    }

    .sidebar-footer {
        margin-top: 0;
        border-top: none;
        border-left: 1px solid var(--gray-200);
        padding-left: 18px;
    }

    .main-area {
        padding-top: 12px;
        overflow: visible;
    }

    .profile-card .profile-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .profile-sidecard {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 960px) {
    .profile-sidecard {
        max-width: 380px;
        margin: 0 auto;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .name-fields-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .content-wrapper {
        padding: 0 20px 32px;
        gap: 24px;
        flex: unset;
        overflow: visible;
    }

    .section-card {
        padding: 26px 24px;
    }

    .section-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-bottom: 14px;
    }

    .overview-item__icon {
        width: 28px;
        height: 28px;
    }

    .status-banner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 20px 28px;
    }

    .status-actions {
        width: 100%;
        align-items: stretch;
    }

    .status-banner__cta {
        width: 100%;
    }

    .cta-actions {
        flex-direction: column;
    }

    .profile-card {
        padding: 26px 24px 32px;
    }

    .profile-card .profile-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .profile-card .profile-hero h1 {
        font-size: 20px;
    }

    .profile-actions {
        flex-direction: column;
        gap: 12px;
    }

    .profile-panel {
        padding: 26px 24px;
    }

    .profile-panel h2 span {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .modal-content {
        padding: 24px 20px;
        width: 95%;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    .form-actions {
        flex-direction: column;
    }

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

@media (max-width: 540px) {
    .profile-card {
        padding: 24px 18px 30px;
    }

    .section-card {
        padding: 22px 20px 28px;
    }

    .profile-sidecard {
        padding: 28px 20px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .overview-item {
        gap: 12px;
    }

    .overview-item__label {
        font-size: 16px;
    }

    .overview-item__value {
        font-size: 13px;
    }

    .status-banner__label {
        font-size: 16px;
    }

    .status-banner__helper {
        font-size: 14px;
    }

    .status-banner__cta {
        padding: 12px 20px;
    }

    .profile-actions .action-btn {
        width: 100%;
    }
}

.profile-fields {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.profile-fields label {
    font-size: 17px;
    color: #16171b;
    font-weight: 600;
    font-family: "Raleway", sans-serif !important;
}    
.profile-inputs {
    padding: 5px 2px 5px 2px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height:1.55;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}
.profile-inputs input,
.profile-input select {
    border: none
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    width: 100%;
    outline: none;
}

.profile-inputs input[readonly] {
    color: #5f6470;
    font-size: 15px;
    line-height: 1.55;
    margin-left: 34px;
}
p.overview-item__value.Active, p.overview-item__value.Confirmed, .overview-item__value.Verified  {
    color: #21c55e;
    font-weight: 400;
}
p.overview-item__value.Inactive, p.overview-item__value.Pending, .overview-item__value.Unverified {
    color: #ff0000;
    font-weight: 400;
}
