.dashboard-background-blur {
    position: fixed;
    width: 40%;
    height: 40%;
    right: -20%;
    bottom: -20%;
    background: var(--green-100);
    filter: blur(122.55px);
    z-index: -1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}


.breadcrumb-home {
    width: 16px;
    height: 16px;
}

.breadcrumb-separator {
    width: 16px;
    height: 16px;
}

.dashboard-top-bar {
    display: flex;
    justify-content: space-between;
    padding: 18px 80px 32px 80px;
}

.account-body {
    display: flex;
    justify-content: start;
    margin-left: 240px;
    margin-right: 240px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-right: 120px;
}

.sidebar-title {
    color: black;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    text-decoration: none;
}

.account-form-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

.account-form-title {
    line-height: 100%;
}

.sidebar-link:hover {
    color: var(--green-400);
    text-decoration: none;
}

.organization-banner {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid var(--gray-200);
    background: white;
    border-radius: 24px;
    margin-top: 0;
}

.organization-banner-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.organization-banner-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.organization-banner-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.organization-banner-name {
    color: black;
}

.organization-logo-input img {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    object-fit: cover;
}

.organization-logo-input-column {
    display: flex;
    
}

/* Typography applied via template: .body-text-big-regular (18px/28px) + .c-gray-800 */
.organization-logo-input-column legend {
    margin-bottom: 32px;
}

.organization-logo-input {
    margin-bottom: 16px;
}

/* Option label wrapper - groups icon and text with 4px gap */
.option-label-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Option icon - 24x24px square container for option icons */
.option-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.dashboard-body {
    display: flex;
    flex-direction: column;
    margin-left: 48px;
    margin-right: 48px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}

.dashboard-header-card {
    border-radius: 30px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.dashboard-header-card-content {
    padding: 24px;
    flex-direction: column;
    display: flex;
}

.dashboard-header-card-content-row {
    padding: 24px 24px 14px 24px;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}

.dashboard-header-card-footer {
    border-top: 1px solid var(--gray-100);
    height: 48px;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0px 24px;
}

.dashboard-header-card-count {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dashboard-header-card-count-container {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.dashboard-header-card-badges-container {
    margin-top: 32px;
    justify-content: flex-end;
    flex-direction: column;
    display: flex;
    gap: 4px;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.request-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 16px;
    background: var(--green-600);
    font-family: 'Lufga';
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
    color: var(--white);
}

.search-bar {
    display: flex;
    gap: 8px;
}

.search-input {
    width: 400px;
    padding: 8px 16px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--gray-25);
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--gray-900);
}

.search-input:focus {
    outline: none;
    border-color: var(--green-400);
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-button {
    padding: 8px 16px;
    border-radius: 16px;
    border: none;
    background: var(--green-500);
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.search-button:hover {
    background: var(--green-600);
}

.dashboard-table {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 30px;
    border: 1px solid var(--gray-200);
    padding: 40px 32px;
    background: var(--gray-50);

}

.dashboard-table-header-container {
    display: grid;
    grid-template-columns: 50px 1fr;
    margin-bottom: 12px;
}

.dashboard-table-header {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--gray-500);
}

.dashboard-table-header > * {
    border-right: 1px solid var(--gray-200);
    padding: 0 2px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-table-header > *:last-child {
    border-right: none;
}

.table-header-button {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    text-align: center;
}

.notification-icon {
    width: 15px;
    height: 20px;
    object-fit: contain;
}

.dashboard-table-row-container {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    border-radius: 24px;
    border: 1px solid var(--gray-50);
    background: white;
    box-shadow: 0px 0px 75.4px 0px #54998F08;
    margin-bottom: 8px;
    position: relative;
}

.dashboard-table-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    padding: 16px 0px;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--gray-900);
}

.dashboard-table-row-left-action {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--gray-100);
}

.dashboard-table-row > * {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--gray-100);
    padding: 0 8px;
    overflow: hidden;
}

.dashboard-table-row > .table-right-actions {
    overflow: visible;
}

.dashboard-table-row > * > * {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.dashboard-table-row > * > .header-link-badge {
    width: 20px;
    height: 20px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.dashboard-table-row > *:last-child {
    border-right: none;
}

/* Sort Component */
.sort-component {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.sort-select {
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--green-400);
    border-radius: 8px;
    background: var(--green-25);
    color: var(--gray-600);
    cursor: pointer;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

.sort-select:focus {
    outline: none;
    border-color: var(--green-400);
}

/* Search Filters Container */
.search-filters {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Filters Component */
.filters-component {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-input {
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--green-400);
    border-radius: 8px;
    background: var(--green-25);
    color: var(--gray-600);
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

.date-input:focus {
    outline: none;
    border-color: var(--green-400);
}

/* Pagination */
.pagination {
    width: 33%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.pagination button {
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
    cursor: pointer;
}

.pagination > button {
    background: transparent;
    border: none;
    color: var(--gray-400);
}

.pagination > button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-pages {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination-page {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    padding: 10px;
    background: transparent;
    border: none;
    font-family: 'Lufga';
    font-weight: 400;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-page.active {
    background: var(--green-100);
    color: var(--green-400);
}

/* Table Actions */
.table-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    /* Removed fixed width - let it be 1fr like other columns to align with header */
}

.dashboard-table-header .actions-header {
    /* Let it be 1fr like other columns to align properly with row actions */
}

.table-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--green-25);
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 15px;
    text-align: center;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
}

.table-action-btn:hover {
    background: var(--green-50);
    border-color: var(--green-400);
}

.table-action-btn .action-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.left-action-btn {
    background: none;
    border: none;
    cursor: pointer;
}

/* Right Line Actions - Dropdown */
.table-right-actions {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-action-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.right-action-dropdown-btn:hover {
    background: var(--gray-100);
}

.right-action-dropdown-btn img {
    width: 3px;
    height: 15px;
    object-fit: contain;
}

.actions-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 8px;
    min-width: 180px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    flex-direction: column;
    padding: 4px;
}

.actions-dropdown.show {
    display: flex;
}

.actions-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: none;
    border: none;
    border-radius: 8px;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--gray-700);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
    white-space: nowrap;
}

.actions-dropdown-item:hover {
    background: var(--green-25);
    color: var(--gray-900);
}

.actions-dropdown-item .action-dropdown-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.dashboard-table-header .right-actions-header {
    /* Let it be 1fr like other columns to align properly with row right-actions */
}

.badge {
    align-items: center;
    justify-content: center;
    display: flex;
    height: 24px;
    padding: 4px 12px;
    width: 132px;
    border-radius: 100px;
    line-height: 15px;
}

.bg-badge-red {
    background-color: #F9414180;
}

.bg-badge-yellow {
    background-color: #FFCC0080;
}

.bg-badge-green {
    background-color: #B3DCD3;
}

.dashboard-table-title-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

/* Empty Table */
.dashboard-empty-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
}

.dashboard-empty-table-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 2.5rem; /* 40px */
    line-height: 100%; /* 40px */
    text-align: center;
    margin-bottom: 12px;
}

.dashboard-empty-table-subtitle {
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
    text-align: center;
    color: var(--gray-500);
}

.dashboard-empty-table-image {
    width: 60%;
    height: 200px;
    background-image: url("../images/onboarding_background-r3XJYXm.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    opacity: 0.5;
}

/* Offer Document Component */
.offer-document-card {
    display: flex;
    flex-direction: column;
    padding: 16px 24px;
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow: 0px 0px 75.4px 0px rgba(84, 153, 143, 0.03);
}

.offer-document-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 32px;
}

.offer-document-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 32px;
    padding: 4px 16px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--green-25);
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
}

.offer-document-send-btn:hover {
    background: var(--green-50);
    border-color: var(--green-400);
}

.offer-document-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.offer-document-table thead th {
    text-align: left;
    padding: 4px;
    border-right: 1px solid var(--gray-300);
}

.offer-document-table thead th:last-child {
    border-right: none;
}

.offer-document-table tbody td {
    padding: 4px;
    border-right: 1px solid var(--gray-300);
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.offer-document-table tbody td:last-child {
    border-right: none;
}

.offer-document-table tbody td.offer-document-actions {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.offer-document-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.action-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: color 0.2s;
}

.action-icon-button:hover {
    color: var(--green-400);
}

.action-icon-button.action-delete {
    color: var(--gray-600);
}

.action-icon-button.action-delete:hover {
    color: var(--red);
}

.offer-document-footer {
    display: flex;
    justify-content: flex-end;
}

.offer-document-footer a {
    text-decoration: none;
    transition: color 0.2s;
}

.offer-document-footer a:hover {
    color: var(--green-400);
}

.offer-document-empty {
    text-align: center;
    padding: 40px 20px;
}

/* Documents Modal */
.documents-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.documents-modal-overlay.show {
    display: flex;
}

.documents-modal {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 80vh;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    overflow: hidden;
}

.documents-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.documents-modal-close {
    width: 44px;
    height: 44px;
    padding: 10px;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 24px;
    line-height: 1;
    opacity: 1;
    top: 0px;
    right: 0px;
    position: absolute;
}

.documents-modal-close:hover {
    color: var(--gray-800);
    border-color: var(--gray-400);
}

.documents-modal-content {
    overflow-y: auto;
    flex: 1;
    position: relative;
}
.documents-modal-margin {
    margin: 22px;
}

/* Upload Modal */
.upload-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
}

.upload-modal-overlay.show {
    display: flex;
}

.upload-modal {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    position: relative;
    width: 90%;
    max-width: 600px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
}

.upload-modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Upload Form */
.upload-document-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.upload-document-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.upload-form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.upload-select {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    background: var(--white);
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--gray-800);
    cursor: pointer;
}

.upload-select:focus {
    outline: none;
    border-color: var(--green-400);
}

/* Dropzone */
.dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    background: var(--gray-25);
    cursor: pointer;
    transition: all 0.2s;
    gap: 12px;
}

.dropzone:hover {
    border-color: var(--green-400);
    background: var(--green-25);
}

.dropzone-active {
    border-color: var(--green-400);
    background: var(--green-50);
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.dropzone-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow:
        0px 1px 2px 0px #1018280D,
        0px -2px 0px 0px #1018280D inset,
        0px 0px 0px 1px #1018282E inset;
}

.dropzone-text {
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--gray-600);
}

.dropzone-text-highlight {
    font-family: 'Lufga';
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--green-400);
}

/* File Preview */
.file-preview {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
}

.file-preview-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.file-preview-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.file-preview-remove {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.file-preview-remove:hover {
    border-color: var(--red);
}

/* Upload Button */
.upload-btn {
    width: 100%;
    padding: 16px 32px;
    border-radius: 16px;
    border: none;
    background: var(--green-500);
    color: var(--white);
    font-family: 'Lufga';
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.upload-btn:hover:not(:disabled) {
    background: var(--green-600);
}

.upload-btn:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Client Card Component */
.client-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.client-card-top,
.client-card-bottom {
    display: flex;
}

.client-card-bottom {
    gap: 16px;
}

.client-card-top {
    align-items: center;
    justify-content: space-between;
}

.client-card-avatar {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-card-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.client-card-phone-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.client-card-btn {
    flex: 1;
    padding: 12px 16px;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

/* Requirements Status Component */
.requirement-status-title {
    margin-bottom: 12px;
}

.requirement-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.requirement-status-label-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.requirement-status-select {
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    background: var(--white);
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--gray-800);
    cursor: pointer;
    min-width: 120px;
}

.requirement-status-select:disabled {
    appearance: none;
}

.requirement-status-select:focus {
    outline: none;
    border-color: var(--green-400);
}

.requirement-status-select:hover {
    border-color: var(--green-400);
}

/* Offer Option Component */
.offer-option-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: auto;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
}

.offer-option-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.offer-option-header p {
    margin: 0;
}

.offer-option-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-option-status {
    display: flex;
    align-items: center;
}

.offer-option-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 16px;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.offer-option-badge-pending {
    background: rgba(255, 204, 0, 0.15);
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

.offer-option-badge-confirmed {
    background: var(--green-100);
    color: var(--green-600);
    border: 1px solid var(--green-400);
}

.offer-option-badge-booked {
    background: var(--green-100);
    color: var(--green-600);
    border: 1px solid var(--green-400);
}

.offer-option-badge-canceled {
    background: rgba(249, 65, 65, 0.15);
    color: var(--red);
    border: 1px solid var(--red);
}

.offer-option-badge-expired {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}

.offer-option-badge-declined {
    background: rgba(249, 65, 65, 0.15);
    color: var(--red);
    border: 1px solid var(--red);
}

.offer-option-badge-rejected {
    background: rgba(249, 65, 65, 0.15);
    color: var(--red);
    border: 1px solid var(--red);
}

.offer-status-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-evenly;
}

.offer-status-layout > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-option-date-input {
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    background: var(--white);
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--gray-800);
    cursor: pointer;
}

.offer-option-date-input:focus {
    outline: none;
    border-color: var(--green-400);
}

.offer-option-date-input:disabled {
    background: var(--gray-50);
    cursor: not-allowed;
    color: var(--gray-500);
}

.offer-option-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.offer-option-actions button {
    flex: 1;
}

.offer-option-create-btn {
    width: 100%;
    background: var(--green-200);
    border: 1px solid var(--green-300);
    color: var(--gray-700);
}

.offer-option-create-btn:hover {
    background: var(--green-300);
    border-color: var(--green-400);
    color: var(--gray-700);
}

/* Option Modal */
.option-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
}

.option-modal-overlay.show {
    display: flex;
}

.option-modal {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.12);
}

.option-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: var(--gray-600);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.option-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.option-modal-icon {
    width: 75px;
    height: 75px;
}

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

.option-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 8px;
}

.option-modal-actions button {
    width: 100%;
}

/* Edit Request Summary Modal */
.edit-request-summary-modal-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.edit-request-summary-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.edit-request-summary-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Decline Modal */
.decline-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
}

.decline-modal-overlay.show {
    display: flex;
}

.decline-modal {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.12);
}

.decline-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.decline-modal-icon {
    width: 75px;
    height: 75px;
}

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

.decline-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 8px;
}

.decline-modal-actions button {
    width: 100%;
}

.btn-decline-proposal {
    width: 100%;
    background: var(--red-200);
    border: 1px solid var(--red-300);
    color: var(--gray-700);
}

.btn-decline-proposal:hover {
    background: var(--red-300);
    border-color: var(--red);
    color: var(--gray-700);
}

.btn-decline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--red);
    border: none;
    border-radius: 16px;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

.btn-decline:hover {
    background: var(--error-red);
    color: var(--white);
    text-decoration: none;
}

/* Close Offer Modal - Similar to Decline Modal */
.close-offer-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
}

.close-offer-modal-overlay.show {
    display: flex;
}

.close-offer-modal {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.12);
}

.close-offer-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.close-offer-modal-icon {
    width: 75px;
    height: 75px;
}

.close-offer-modal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-offer-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 8px;
}

.close-offer-modal-actions button {
    width: 100%;
}

.btn-close-offer {
    background: var(--red-200);
    border: 1px solid var(--red-300);
    color: var(--gray-700);
}

.btn-close-offer:hover {
    background: var(--red-300);
    border-color: var(--red);
    color: var(--gray-700);
}

.btn-close-offer-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--red);
    border: none;
    border-radius: 16px;
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    font-family: 'Lufga';
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5rem;
}

.btn-close-offer-confirm:hover {
    background: var(--error-red);
    color: var(--white);
    text-decoration: none;
}

.btn-close-offer-confirm:disabled {
    background: var(--gray-200);
    color: var(--gray-400);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-close-offer-confirm:disabled:hover {
    background: var(--gray-200);
    color: var(--gray-400);
}

/* Cancel Request Modal - Similar to Decline Modal */
.cancel-request-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
}

.cancel-request-modal-overlay.show {
    display: flex;
}

.cancel-request-modal {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.12);
}

.cancel-request-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.cancel-request-modal-icon {
    width: 75px;
    height: 75px;
}

.cancel-request-modal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cancel-request-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 8px;
}

.cancel-request-modal-actions button {
    width: 100%;
}

.request-details-content {
    margin: 0px 72px 0px 36px;
}

.request-details-content-header {
    margin: 0px 36px 0px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    grid-template-areas:
    "summary summary option"
    "requirements documents option"
    "requirements documents client";
}

.request-details-content-header-summary {
    grid-area: summary;
    position: relative;
    display: flex;
    gap: 8px
}

.request-details-content-header-summary > .d-flex-column {
    height: 100%;
    width: 100%;
}

.request-details-content-header-option {
    grid-area: option;
    display: flex;
    flex-direction: column;
}

.request-details-content-header-option > * {
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

.request-details-content-header-requirements {
    grid-area: requirements;
}

.request-details-content-header-requirements > * {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.request-details-content-header-documents {
    grid-area: documents;
}

.request-details-content-header-documents > * {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.request-details-content-header-client {
    grid-area: client;
}

.request-details-content-header-client > * {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}