:root {
    --evo-red: #df2027;
    --evo-red-deep: #b41218;
    --evo-ink: #0c0c0f;
    --evo-graphite: #1a1b20;
    --evo-steel: #6b6f78;
    --evo-cloud: #f4f5f7;
    --evo-panel: #ffffff;
    --evo-border: rgba(12, 12, 15, 0.08);
    --evo-bg: linear-gradient(180deg, #fbfbfc 0%, #f2f3f5 100%);
}

body {
    font-family: "Outfit", sans-serif;
    background: var(--evo-bg);
    color: var(--evo-ink);
}

a {
    color: var(--evo-red);
}

a:hover {
    color: var(--evo-red-deep);
}

.btn-primary {
    background: var(--evo-red);
    border-color: var(--evo-red);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--evo-red-deep) !important;
    border-color: var(--evo-red-deep) !important;
}

.btn-outline-primary {
    color: var(--evo-red);
    border-color: rgba(223, 32, 39, 0.35);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--evo-red);
    border-color: var(--evo-red);
}

.admin-body .sidebar {
    width: 280px;
    flex: 0 0 280px;
    height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(223, 32, 39, 0.28), transparent 24%),
        linear-gradient(180deg, #101116 0%, #1a1b20 58%, #0b0b0f 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    overflow-y: auto;
}

.admin-shell {
    min-height: 100vh;
    align-items: flex-start;
}

.admin-main {
    min-width: 0;
    min-height: 100vh;
    flex: 1 1 auto;
}

.mobile-admin-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    padding: 0.9rem 1rem;
    background:
        radial-gradient(circle at top left, rgba(223, 32, 39, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(16, 17, 22, 0.98), rgba(26, 27, 32, 0.98));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.mobile-admin-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-admin-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    min-width: 82px;
    height: 46px;
}

.mobile-admin-menu-button {
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
}

.mobile-admin-menu-button:hover,
.mobile-admin-menu-button:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.mobile-admin-offcanvas {
    width: min(84vw, 320px);
    background:
        radial-gradient(circle at top left, rgba(223, 32, 39, 0.28), transparent 24%),
        linear-gradient(180deg, #101116 0%, #1a1b20 58%, #0b0b0f 100%);
    color: #fff;
}

.mobile-admin-offcanvas .offcanvas-header {
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-admin-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.mobile-admin-offcanvas-brand {
    width: 86px;
}

.mobile-admin-nav .nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-admin-account {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-admin-user-name {
    margin-bottom: 0.65rem;
}

.mobile-admin-profile-link,
.sidebar-profile-link {
    margin-bottom: 0.65rem;
}

.sidebar-brand {
    margin-bottom: 1.5rem;
}

.sidebar-nav {
    flex: 1 1 auto;
}

.sidebar-account {
    padding-top: 1.25rem;
}

.sidebar-user-name {
    margin-bottom: 0.65rem;
}

.sidebar-logout-button {
    min-height: 46px;
}

.product-group-heading {
    padding: 0.95rem 1rem !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--evo-red-deep) !important;
    background: rgba(223, 32, 39, 0.05) !important;
}

.product-admin-table-nowrap {
    white-space: nowrap;
    width: 1%;
}

.product-admin-table-actions {
    white-space: nowrap;
    width: 1%;
}

.product-admin-table-buttons {
    flex-wrap: nowrap;
}

.proposal-admin-table-code,
.proposal-admin-table-nowrap {
    white-space: nowrap;
    width: 1%;
}

.proposal-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
}

.proposal-status-badge::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: currentColor;
    flex: 0 0 auto;
}

.proposal-status-badge-draft {
    color: #667085;
    background: #f2f4f7;
    border-color: #e4e7ec;
}

.proposal-status-badge-sent {
    color: #b54708;
    background: #fff7ed;
    border-color: #fed7aa;
}

.proposal-status-badge-viewed {
    color: #175cd3;
    background: #eff8ff;
    border-color: #b2ddff;
}

.proposal-status-badge-accepted {
    color: #027a48;
    background: #ecfdf3;
    border-color: #a6f4c5;
}

.proposal-status-badge-rejected {
    color: #b42318;
    background: #fef3f2;
    border-color: #fecdca;
}

.proposal-status-badge-cancelled {
    color: #344054;
    background: #f2f4f7;
    border-color: #d0d5dd;
}

.proposal-status-badge-expired {
    color: #7a2e8e;
    background: #faf5ff;
    border-color: #e9d5ff;
}

.proposal-status-badge-neutral {
    color: #344054;
    background: #f8fafc;
    border-color: #d0d5dd;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    padding: 0.8rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff;
    background: rgba(223, 32, 39, 0.18);
}

.brand-mark {
    width: 88px;
    min-width: 88px;
    height: 58px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.brand-mark-logo {
}

.brand-logo {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
}

.glass-card,
.card,
.proposal-shell,
.action-panel,
.stat-card,
.mini-panel,
.accepted-badge {
    border: 1px solid var(--evo-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
}

.page-header h2 {
    font-weight: 700;
}

.stat-card {
    padding: 1.5rem;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(12, 12, 15, 0.05);
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    filter: blur(2px);
    pointer-events: none;
}

.stat-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.stat-card-kicker {
    display: block;
    color: var(--evo-steel);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
 }

.stat-card-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    white-space: nowrap;
}

.stat-card-pill::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: currentColor;
    flex: 0 0 auto;
}

.stat-card span {
    color: var(--evo-steel);
    font-size: 0.95rem;
}

.stat-card strong {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--evo-ink);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-card-total {
    background: linear-gradient(135deg, #fcfcfd 0%, #f8fafc 100%);
    border-color: #e4e7ec;
}

.stat-card-open {
    background: linear-gradient(135deg, #fffaf0 0%, #fff7ed 100%);
    border-color: #fed7aa;
}

.stat-card-accepted,
.stat-card-value-accepted {
    background: linear-gradient(135deg, #f4fff8 0%, #ecfdf3 100%);
    border-color: #a6f4c5;
}

.stat-card-rejected {
    background: linear-gradient(135deg, #fff8f7 0%, #fef3f2 100%);
    border-color: #fecdca;
}

.stat-card-value-open,
.stat-card-sent {
    background: linear-gradient(135deg, #fff9f1 0%, #fff7ed 100%);
    border-color: #fed7aa;
}

.stat-card-pill-total {
    color: #344054;
    background: #f2f4f7;
    border-color: #d0d5dd;
}

.stat-card-pill-open {
    color: #b54708;
    background: #fff7ed;
    border-color: #fed7aa;
}

.stat-card-pill-accepted {
    color: #027a48;
    background: #ecfdf3;
    border-color: #a6f4c5;
}

.stat-card-pill-rejected {
    color: #b42318;
    background: #fef3f2;
    border-color: #fecdca;
}

.stat-card-pill-sent {
    color: #b54708;
    background: #fff7ed;
    border-color: #fed7aa;
}

.stat-card-open strong,
.stat-card-value-open strong,
.stat-card-sent strong {
    color: #9a3412;
}

.stat-card-accepted strong,
.stat-card-value-accepted strong {
    color: #027a48;
}

.stat-card-rejected strong {
    color: #b42318;
}

.mini-panel {
    padding: 1rem 1.1rem;
}

.dashboard-expiring-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.dashboard-expiring-link:hover,
.dashboard-expiring-link:focus {
    color: inherit;
    border-color: rgba(223, 32, 39, 0.22);
    box-shadow: 0 10px 24px rgba(12, 12, 15, 0.06);
    transform: translateY(-1px);
}

.dashboard-expiring-link-expired {
    border-color: rgba(180, 35, 24, 0.18);
    background: linear-gradient(180deg, #fff8f8 0%, #fff2f2 100%);
}

.dashboard-expired-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: #fef3f2;
    border: 1px solid #fecdca;
    color: #b42318;
    font-size: 0.74rem;
    font-weight: 700;
    white-space: nowrap;
}

.dashboard-recent-card {
    overflow: hidden;
}

.dashboard-recent-card-header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.dashboard-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.dashboard-count-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(223, 32, 39, 0.08);
    color: var(--evo-red-deep);
    border: 1px solid rgba(223, 32, 39, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.dashboard-empty-state {
    padding: 1.35rem;
    border: 1px dashed rgba(12, 12, 15, 0.1);
    border-radius: 20px;
    background: linear-gradient(180deg, #fcfcfd 0%, #f8fafc 100%);
}

.dashboard-empty-state strong {
    display: block;
    margin-bottom: 0.35rem;
}

.dashboard-recent-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.dashboard-proposal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(12, 12, 15, 0.06);
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(223, 32, 39, 0.06), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    box-shadow: 0 12px 24px rgba(12, 12, 15, 0.04);
}

.dashboard-proposal-main {
    min-width: 0;
    flex: 1 1 auto;
}

.dashboard-proposal-title {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--evo-red);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
}

.dashboard-proposal-title:hover,
.dashboard-proposal-title:focus {
    color: var(--evo-red-deep);
    text-decoration: underline;
}

.dashboard-proposal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    color: var(--evo-steel);
    font-size: 0.88rem;
}

.dashboard-proposal-meta span {
    position: relative;
}

.dashboard-proposal-meta span + span::before {
    content: "";
    display: inline-block;
    width: 0.3rem;
    height: 0.3rem;
    margin-right: 0.7rem;
    border-radius: 50%;
    background: rgba(107, 111, 120, 0.45);
    vertical-align: middle;
}

.dashboard-proposal-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
    flex: 0 0 auto;
}

.dashboard-proposal-status {
    display: flex;
    justify-content: flex-end;
}

.dashboard-proposal-value {
    font-size: 1.05rem;
    color: var(--evo-graphite);
    white-space: nowrap;
}

.dashboard-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(12, 12, 15, 0.08);
}

.dashboard-pagination-summary {
    color: var(--evo-steel);
    font-size: 0.88rem;
}

.dashboard-pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.dashboard-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.55rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(223, 32, 39, 0.18);
    background: #fff;
    color: var(--evo-red-deep);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.dashboard-page-button:hover,
.dashboard-page-button:focus {
    background: rgba(223, 32, 39, 0.08);
    border-color: rgba(223, 32, 39, 0.28);
    color: var(--evo-red-deep);
}

.dashboard-page-button.disabled,
.dashboard-page-button[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.45;
}

.dashboard-page-indicator {
    color: var(--evo-graphite);
    font-size: 0.88rem;
    font-weight: 600;
}

.timeline-item {
    border-left: 2px solid rgba(223, 32, 39, 0.25);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.proposal-hero {
    background:
        radial-gradient(circle at top right, rgba(223, 32, 39, 0.18), transparent 26%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 28%),
        linear-gradient(160deg, #0b0b0f 0%, #18191f 58%, #23252c 100%);
    color: #fff;
    min-height: 100vh;
}

.proposal-shell,
.action-panel {
    padding: 2rem;
}

.proposal-sidebar {
    position: sticky;
    top: 24px;
}

.proposal-document {
    color: #15161a;
}

.proposal-section {
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(12, 12, 15, 0.08);
}

.proposal-section:last-child {
    border-bottom: 0;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--evo-red);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-data-card {
    min-height: 170px;
    padding: 1.15rem 1rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
    border: 1px solid rgba(12, 12, 15, 0.06);
    box-shadow: 0 14px 28px rgba(12, 12, 15, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.85rem;
}

.feature-data-icon,
.included-card-icon-svg {
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(223, 32, 39, 0.1);
    color: var(--evo-red-deep);
}

.feature-icon-svg,
.feature-icon-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-fallback {
    display: none;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.feature-data-icon svg,
.included-card-icon-svg svg {
    width: 1.55rem;
    height: 1.55rem;
}

.feature-data-title {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--evo-graphite);
    line-height: 1.25;
}

.feature-data-value {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--evo-ink);
    line-height: 1.1;
}

.included-cards {
    margin-top: 1.5rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.included-cards-compact {
    margin-top: 1.25rem;
}

.included-cards-header h3 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--evo-graphite);
}

.included-cards-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.action-panel {
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        linear-gradient(180deg, rgba(223, 32, 39, 0.14), rgba(223, 32, 39, 0));
}

.action-metrics > div {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.action-metrics span,
.text-light-emphasis {
    color: rgba(255, 255, 255, 0.72) !important;
}

.btn-accept,
.btn-reject {
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-weight: 700;
}

.btn-accept {
    background: #fff;
    color: var(--evo-red-deep);
}

.btn-accept:hover,
.btn-accept:focus {
    background: #f2f2f3;
    color: var(--evo-red-deep);
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-reject:hover,
.btn-reject:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.accepted-badge {
    padding: 1rem 1.2rem;
    color: #fff;
    background: rgba(26, 176, 112, 0.2);
}

.proposal-ekipes-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(12, 12, 15, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--evo-graphite);
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(12, 12, 15, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.proposal-ekipes-card:hover,
.proposal-ekipes-card:focus {
    color: var(--evo-graphite);
    transform: translateY(-2px);
    border-color: rgba(57, 111, 227, 0.22);
    box-shadow: 0 22px 40px rgba(12, 12, 15, 0.12);
}

.proposal-ekipes-logo {
    width: 124px;
    max-width: 38%;
    height: auto;
    flex: 0 0 auto;
}

.proposal-ekipes-text {
    font-size: 0.98rem;
    line-height: 1.75;
}

.proposal-ekipes-link {
    color: #4a7df0;
}

.table-proposal th,
.table-proposal td {
    vertical-align: middle;
}

.table-proposal td:first-child,
.table-proposal th:first-child {
    white-space: normal;
}

.table-proposal-nowrap {
    white-space: nowrap;
}

.table-proposal-total-label,
.table-proposal-total-value {
    font-weight: 700;
}

.table-proposal-total-label {
    text-align: right;
}

.proposal-feature-group-title {
    margin: 1.2rem 0 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--evo-graphite);
}

.password-strength {
    width: 100%;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(12, 12, 15, 0.08);
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    border-radius: inherit;
    transition: width 180ms ease, background-color 180ms ease;
    background: #9ca3af;
}

.password-strength-bar[data-strength="weak"] {
    background: #dc3545;
}

.password-strength-bar[data-strength="medium"] {
    background: #fd7e14;
}

.password-strength-bar[data-strength="strong"] {
    background: #198754;
}

[data-password-strength-text][data-strength="weak"],
[data-password-confirmation-text][data-match="no"] {
    color: #dc3545 !important;
}

[data-password-strength-text][data-strength="medium"] {
    color: #b85c00 !important;
}

[data-password-strength-text][data-strength="strong"],
[data-password-confirmation-text][data-match="yes"] {
    color: #198754 !important;
}

.settings-tabs {
    border-bottom: 0;
    gap: 0.75rem;
}

.settings-tabs .nav-link {
    color: var(--evo-graphite);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(12, 12, 15, 0.08);
    border-radius: 16px;
    padding: 0.85rem 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(12, 12, 15, 0.04);
}

.settings-tabs .nav-link:hover,
.settings-tabs .nav-link:focus {
    color: var(--evo-red-deep);
    border-color: rgba(223, 32, 39, 0.18);
    background: rgba(255, 255, 255, 0.98);
}

.settings-tabs .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--evo-red) 0%, var(--evo-red-deep) 100%);
    border-color: transparent;
}

.settings-card {
    overflow: hidden;
}

.settings-actions {
    display: flex;
    justify-content: flex-end;
}

.product-pricing-panel {
    padding: 1.5rem;
    border: 1px solid rgba(12, 12, 15, 0.06);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(223, 32, 39, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 250, 0.96));
}

.period-card {
    height: 100%;
    padding: 1rem;
    border: 1px solid rgba(12, 12, 15, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(12, 12, 15, 0.04);
}

.period-card .input-group-text {
    background: rgba(223, 32, 39, 0.08);
    color: var(--evo-red-deep);
    border-color: rgba(223, 32, 39, 0.14);
    font-weight: 700;
}

.period-card-preview {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: var(--evo-cloud);
}

.period-card-price {
    font-size: 1.25rem;
    line-height: 1.1;
    color: var(--evo-ink);
}

.period-card-meta {
    font-size: 0.92rem;
    color: var(--evo-graphite);
}

.period-card-submeta {
    font-size: 0.84rem;
    color: var(--evo-steel);
}

@media (max-width: 991px) {
    .proposal-sidebar {
        position: static;
    }

    .admin-shell {
        align-items: stretch;
    }

    .admin-main {
        min-height: auto;
        padding: 1rem !important;
    }
}

@media (max-width: 767px) {
    .grid-two,
    .feature-cards-grid,
    .included-cards-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-section-head,
    .dashboard-proposal-row,
    .dashboard-pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-proposal-side,
    .dashboard-proposal-status,
    .dashboard-pagination-controls {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .proposal-ekipes-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .proposal-ekipes-logo {
        max-width: 170px;
        width: 100%;
    }
}

@media (max-width: 1199px) {
    .included-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
