﻿/* FULL PAGE PROJECT DETAIL DESIGN */





/* Container now acts as a full page overlay */


.product-modal {


    position: fixed;


    top: 0;


    left: 0;


    width: 100vw;


    height: 100vh;


    background-color: #f8fafc;


    /* Light background for the whole page */


    z-index: 3000;


    /* Higher hierarchy */


    display: none;


    overflow-y: auto;


    /* Scroll happens on the page level */


    overflow-x: hidden;


}





.product-modal.hidden {


    display: none !important;


}





/* The Wrapper is now the full page container */


.modal-content-wrapper {


    width: 100%;


    min-height: 100%;


    background: transparent;


    box-shadow: none;


    border-radius: 0;


    display: flex;


    flex-direction: column;


    animation: fadeInPage 0.3s ease-out;


}





@keyframes fadeInPage {


    from {


        opacity: 0;


        transform: translateY(20px);


    }





    to {


        opacity: 1;


        transform: translateY(0);


    }


}





/* 1. Sticky Navigation Header */


.modal-clean-header {


    position: sticky;


    top: 0;


    z-index: 100;


    padding: 16px 5%;


    background: rgba(255, 255, 255, 0.95);


    backdrop-filter: blur(10px);


    border-bottom: 1px solid #e2e8f0;


    display: flex;


    justify-content: space-between;


    align-items: center;


    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);


}





.header-left {


    display: flex;


    align-items: center;


    gap: 20px;


}





.back-btn {


    display: flex;


    align-items: center;


    gap: 8px;


    background: transparent;


    border: 1px solid #cbd5e1;


    padding: 10px 18px;


    border-radius: 100px;


    font-weight: 600;


    color: #475569;


    cursor: pointer;


    transition: all 0.2s;


}





.back-btn:hover {


    background: #f1f5f9;


    color: #0f172a;


    border-color: #94a3b8;


}





.project-brand {


    display: flex;


    flex-direction: column;


}





.project-brand h1 {


    font-size: 1.5rem;


    font-weight: 800;


    color: #0f172a;


    margin: 0;


    line-height: 1;


}





.project-brand span {


    font-size: 0.85rem;


    color: #64748b;


    font-weight: 600;


    margin-top: 4px;


    letter-spacing: 0.5px;


}





/* 2. Massive Hero Section */


.hero-full-width {


    width: 100%;


    height: 60vh;


    max-height: 600px;


    min-height: 400px;


    background-size: cover;


    background-position: center;


    position: relative;


    margin-bottom: 0;


}





.hero-overlay-gradient {


    position: absolute;


    inset: 0;


    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));


}





.hero-content {


    position: absolute;


    bottom: 0;


    left: 0;


    right: 0;


    padding: 40px 5%;


    color: white;


    display: flex;


    justify-content: space-between;


    align-items: flex-end;


}





.hero-badges {


    display: flex;


    gap: 12px;


    margin-bottom: 16px;


}





.badge {


    padding: 8px 16px;


    border-radius: 8px;


    font-weight: 700;


    font-size: 0.85rem;


    backdrop-filter: blur(4px);


}





.badge-status {


    background: #22c55e;


    color: white;


}





.badge-type {


    background: rgba(255, 255, 255, 0.2);


    border: 1px solid rgba(255, 255, 255, 0.4);


}





/* 3. Three-Column Content Layout */


.full-page-grid {


    display: grid;


    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr) minmax(280px, 360px);


    /* Left, Middle, Sticky Right */


    gap: 24px;


    padding: 40px 5%;


    max-width: 1800px;


    margin: 0 auto;


    align-items: start;


}





/* SECTION STYLES */


.content-card {


    background: white;


    border-radius: 20px;


    padding: 32px;


    border: 1px solid #e2e8f0;


    margin-bottom: 32px;


    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);


}





.card-title {


    font-size: 1.25rem;


    font-weight: 800;


    color: #1e293b;


    margin-bottom: 24px;


    padding-bottom: 16px;


    border-bottom: 2px solid #f1f5f9;


    display: flex;


    align-items: center;


    gap: 10px;


}





.card-title i {


    color: #d32f2f;


}





/* COLUMN 1: Details & Specs */


.ai-summary {


    font-size: 1.05rem;


    line-height: 1.7;


    color: #475569;


}





.specs-grid-large {


    display: grid;


    grid-template-columns: repeat(2, 1fr);


    gap: 16px;


}





.spec-item-row {


    display: flex;


    justify-content: space-between;


    align-items: center;


    padding: 16px;


    background: #f8fafc;


    border-radius: 12px;


    border: 1px solid #f1f5f9;


}





.spec-key {


    color: #64748b;


    font-weight: 600;


    font-size: 0.9rem;


}





.spec-val {


    color: #0f172a;


    font-weight: 700;


    font-size: 1rem;


}





/* COLUMN 2: Visuals & Plans (Filling the gaps) */


.gallery-grid {


    display: grid;


    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));


    gap: 12px;


}





.gallery-thumb {


    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 110px;
    border: 0;


    background-size: cover;


    background-position: center;


    border-radius: 12px;


    cursor: pointer;


    transition: transform 0.2s;


    position: relative;


}





.gallery-thumb:hover {


    transform: scale(1.02);


}





.more-photos {


    position: absolute;


    inset: 0;


    background: rgba(0, 0, 0, 0.5);


    color: white;


    display: flex;


    align-items: center;


    justify-content: center;


    font-weight: 700;


    font-size: 1.2rem;


    border-radius: 12px;


}





.floor-plan-placeholder {


    height: 250px;


    background: #f1f5f9;


    border-radius: 16px;


    display: flex;


    flex-direction: column;


    align-items: center;


    justify-content: center;


    color: #94a3b8;


    border: 2px dashed #cbd5e1;


}





/* COLUMN 3: Sticky Sidebar (Pricing & Tools) */


.sticky-sidebar {


    position: sticky;


    top: 100px;


    height: fit-content;


}





.price-card-large {


    background: #0f172a;


    color: white;


    text-align: center;


    padding: 40px 32px;


    border-radius: 24px;


    position: relative;


    overflow: hidden;


    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.4);


}





.price-card-large::after {


    content: '';


    position: absolute;


    top: -50%;


    left: -50%;


    width: 200%;


    height: 200%;


    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);


    pointer-events: none;


}





.price-label-lg {


    font-size: 0.9rem;


    color: #94a3b8;


    letter-spacing: 2px;


    text-transform: uppercase;


}





.main-price-lg {


    font-size: 3.5rem;


    font-weight: 900;


    color: white;


    margin: 10px 0;


    line-height: 1;


    letter-spacing: -2px;


}





.currency-row-dark {


    display: flex;


    justify-content: center;


    gap: 12px;


    margin-top: 16px;


    opacity: 0.7;


}





/* Unit List in Sidebar */


.sidebar-unit-list {


    background: white;


    margin-top: 24px;


    border-radius: 16px;


    border: 1px solid #e2e8f0;


    overflow: hidden;


}





.sb-unit-row {


    padding: 16px 20px;


    border-bottom: 1px solid #f1f5f9;


    display: flex;


    justify-content: space-between;


    align-items: center;


}





.sb-unit-row:last-child {


    border-bottom: none;


}





.sb-type {


    font-weight: 700;


    color: #334155;


}





.sb-price {


    font-weight: 800;


    color: #0f172a;


}





/* Action Buttons */


.sidebar-actions {


    display: flex;


    flex-direction: column;


    gap: 12px;


    margin-top: 24px;


}





.btn-primary-lg {


    background: #d32f2f;


    color: white;


    padding: 18px;


    border-radius: 14px;


    font-weight: 700;


    font-size: 1.1rem;


    border: none;


    cursor: pointer;


    display: flex;


    align-items: center;


    justify-content: center;


    gap: 12px;


    transition: all 0.2s;


    box-shadow: 0 10px 20px -5px rgba(211, 47, 47, 0.3);


}





.btn-primary-lg:hover {


    background: #b71c1c;


    transform: translateY(-2px);


}





.btn-secondary-lg {


    background: white;


    color: #0f172a;


    padding: 18px;


    border-radius: 14px;


    font-weight: 700;


    font-size: 1.1rem;


    border: 2px solid #e2e8f0;


    cursor: pointer;


    display: flex;


    align-items: center;


    justify-content: center;


    gap: 12px;


    transition: all 0.2s;


}





.btn-secondary-lg:hover {


    background: #f8fafc;


    border-color: #cbd5e1;


}





/* Comments at Bottom of Center Column */


.comments-wrapper {


    margin-top: 32px;


}





/* Agent Note */


.agent-note-box {


    background: #fffeb8;


    color: #854d0e;


    padding: 20px;


    border-radius: 12px;


    border: 1px solid #fde047;


    font-size: 0.95rem;


    line-height: 1.6;


    display: flex;


    gap: 12px;


    align-items: start;


}





/* Responsive */


@media (max-width: 1480px) {


    .full-page-grid {


        grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr) minmax(260px, 320px);


    }
}





@media (max-width: 768px) {


    .full-page-grid {


        grid-template-columns: 1fr;


    }





    .hero-full-width {


        height: 40vh;


    }





    .sticky-sidebar {


        position: relative;


        top: 0;


    }


}
/* Sidebar modules - sales friendly compact layout */
.sidebar-module-card {
    background: white;
    margin-top: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.sidebar-module-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.sidebar-module-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #0f172a;
    font-size: 0.95rem;
}

.sidebar-module-meta {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 700;
}

.unit-matrix-wrap {
    overflow-x: auto;
}

.unit-matrix {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.unit-matrix th {
    text-align: left;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    color: #64748b;
    font-weight: 700;
    padding: 10px 12px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.unit-matrix td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    color: #1e293b;
    vertical-align: top;
}

.unit-matrix tbody tr:last-child td {
    border-bottom: none;
}

.unit-matrix td:first-child {
    font-weight: 700;
    color: #0f172a;
}

/* Make unit/price card visually match other project cards */
#project-unit-card {
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    margin-top: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

#project-unit-card .sidebar-module-head {
    background: transparent;
    padding: 22px 24px 14px;
    border-bottom: 2px solid #f1f5f9;
    align-items: flex-start;
}

#project-unit-card .sidebar-module-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

#project-unit-card .sidebar-module-meta {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
}

#project-unit-card .unit-matrix-wrap {
    padding: 0 24px 20px;
}

#project-unit-card .unit-matrix th {
    background: transparent;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 10px;
    border-bottom: 1px solid #e2e8f0;
}

#project-unit-card .unit-matrix td {
    padding: 14px 10px;
    font-size: 1.05rem;
    border-bottom: 1px solid #f1f5f9;
}

#project-unit-card .unit-matrix td:first-child {
    color: #0f172a;
    font-weight: 700;
}

.sidebar-collapsible {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    background: #ffffff;
}

.sidebar-collapsible summary {
    list-style: none;
    cursor: pointer;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-collapsible summary::-webkit-details-marker {
    display: none;
}

.sidebar-collapsible summary::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    color: #64748b;
}

.project-media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120000;
    background: rgba(2, 6, 23, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.project-media-lightbox img {
    max-width: min(1200px, 92vw);
    max-height: 86vh;
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
    object-fit: contain;
}

.pm-close,
.pm-nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(15, 23, 42, 0.65);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.pm-close {
    top: 22px;
    right: 22px;
}

.pm-prev {
    left: 24px;
}

.pm-next {
    right: 24px;
}

.pm-counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: #e2e8f0;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
}

.card-edit-btn {
    margin-left: auto;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.project-section-edit-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 100001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.project-section-edit-card {
    width: min(980px, 96vw);
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    max-height: min(90vh, 980px);
    overflow: hidden;
    padding: 0;
}

.project-section-edit-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 12px 14px;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.project-section-edit-body {
    max-height: calc(min(90vh, 980px) - 58px);
    overflow-y: auto;
    overflow-x: hidden;
}

.offer-builder-body {
    padding: 16px;
    display: grid;
    gap: 12px;
}

.offer-grid {
    display: grid;
    gap: 10px;
}

.offer-grid-lang {
    grid-template-columns: 160px minmax(0, 1fr);
}

.offer-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-input {
    width: 100%;
    min-width: 0;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #334155;
    background: #fff;
}

.offer-textarea {
    min-height: 96px;
    resize: vertical;
}

.offer-section-title {
    font-weight: 700;
    color: #334155;
}

.offer-media-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.offer-media-item {
    display: block;
    border: 1px solid #dbe5f1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}

.offer-media-item input {
    display: none;
}

.offer-media-item img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    display: block;
}

.offer-media-item input:checked + img {
    outline: 3px solid #0ea5e9;
    outline-offset: -3px;
}

.offer-empty {
    color: #64748b;
    font-size: 0.9rem;
}

.offer-status {
    font-size: 0.9rem;
    color: #64748b;
}

.offer-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .offer-grid-lang,
    .offer-grid-2,
    .offer-grid-3,
    .offer-grid-4 {
        grid-template-columns: 1fr;
    }

    .offer-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.sidebar-collapsible[open] summary::after {
    content: '\f106';
}

.sales-team-head,
.sales-team-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
}

.sales-team-head {
    font-size: 0.82rem;
    color: #64748b;
    padding: 10px 0 8px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 10px;
}

.sales-team-row {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.sales-col-role {
    font-weight: 700;
    color: #334155;
}

.sales-col-phone {
    white-space: normal;
    word-break: break-word;
    min-width: 0;
}

.sales-col-email {
    word-break: break-all;
    min-width: 0;
}

.sales-col-role,
.sales-col-name {
    min-width: 0;
    word-break: break-word;
}

@media (max-width: 1400px) {
    .sales-team-head,
    .sales-team-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .unit-matrix {
        font-size: 0.82rem;
    }

    .unit-matrix th,
    .unit-matrix td {
        padding: 10px 8px;
    }
}

/* Agent dashboard compact module */
.agent-dashboard-card {
    margin-top: 20px;
    background: linear-gradient(165deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px;
    color: #e2e8f0;
    box-shadow: 0 12px 24px -12px rgba(15, 23, 42, 0.7);
}

.agent-dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.agent-dashboard-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
}

.agent-dashboard-sub {
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.agent-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.agent-kpi {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.agent-kpi-label {
    font-size: 0.72rem;
    color: #cbd5e1;
}

.agent-kpi strong {
    font-size: 0.92rem;
    color: #f8fafc;
}

.agent-chip-row {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.agent-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 165, 233, 0.18);
    border: 1px solid rgba(14, 165, 233, 0.35);
    color: #e0f2fe;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .agent-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* Project notes */
.project-note-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-note-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    background: #f8fafc;
}

.project-note-meta {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 4px;
}

.project-note-text {
    color: #334155;
    font-size: 0.93rem;
    line-height: 1.5;
}

.project-note-empty {
    color: #64748b;
    font-size: 0.9rem;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 12px;
    background: #f8fafc;
}

/* Override: agent dashboard should look like other white modules */
.agent-dashboard-card {
    margin-top: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 16px;
    color: #0f172a;
    box-shadow: 0 4px 8px -2px rgba(15, 23, 42, 0.05);
}

.agent-dashboard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.agent-dashboard-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #0f172a;
}

.agent-dashboard-sub {
    font-size: 0.72rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.agent-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.agent-kpi {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.agent-kpi-label {
    font-size: 0.72rem;
    color: #64748b;
}

.agent-kpi strong {
    font-size: 0.92rem;
    color: #0f172a;
}

.agent-chip-row {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.agent-chip {
    display: inline-flex;
    align-items: center;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 600;
}

/* Agent dashboard simplified */
.agent-dashboard-commission {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.agent-dashboard-commission span {
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
}

.agent-dashboard-commission strong {
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 800;
}

.agent-dashboard-note-wrap {
    margin-top: 8px;
}

.agent-dashboard-note-label {
    display: block;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.agent-dashboard-note-input {
    width: 100%;
    min-height: 92px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px;
    resize: vertical;
    background: #fff;
    color: #1e293b;
}

.agent-dashboard-note-foot {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.agent-dashboard-note-foot span {
    font-size: 0.78rem;
    color: #64748b;
}

/* Portfolio close module */
.portfolio-close-card {
    margin-top: 0;
}

.portfolio-close-card.is-closed {
    border-color: #fecaca;
    background: #fff7f7;
}

.portfolio-close-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.portfolio-close-label {
    color: #475569;
    font-size: 0.82rem;
    font-weight: 700;
}

.portfolio-close-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    font-weight: 600;
}

.portfolio-close-btn {
    padding: 12px;
    font-size: 0.95rem;
}

.portfolio-close-help {
    font-size: 0.75rem;
    color: #64748b;
}

.portfolio-close-meta {
    font-size: 0.86rem;
    color: #334155;
    padding: 6px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.portfolio-close-meta:last-child {
    border-bottom: none;
}
