/**
 * Architect Portal Styles
 * Extends account.css for architect-specific styling
 */

/* Architect Sidebar - Active Project */
.architect-active-project {
    background: linear-gradient(135deg, #332917 0%, #261e11 100%);
    color: white;
    padding: 1rem;
    margin-bottom: 1rem;
}

.architect-active-project-label {
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.architect-active-project-name {
    font-weight: 600;
    font-size: 1.65rem;
    margin-bottom: 0.25rem;
}

.architect-active-project-client {
    font-size: 1.35rem;
    opacity: 0.9;
}

.architect-active-project-clear {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    color: white;
    opacity: 0.8;
    text-decoration: underline;
}

.architect-active-project-clear:hover {
    opacity: 1;
    color: white;
}

/* No Project Selected */
.architect-no-project {
    background: var(--bg-muted, #f5f5f5);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.architect-no-project-icon {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.architect-no-project-text {
    font-size: 1.28rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.architect-no-project-link {
    font-size: 1.28rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Architect Stats */
.architect-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.architect-stat-card {
    background: white;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.architect-stat-card .stat-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-muted, #f5f5f5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.architect-stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.architect-stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
}

.project-card {
    background: white;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.project-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-card-active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb, 34, 97, 53), 0.2);
}

.project-card-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.project-card-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.project-code {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-family: monospace;
}

.project-card-body {
    padding: 1rem;
}

.project-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-card .project-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: var(--text-muted);
}

.project-card .project-info-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.project-card-footer {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-muted, #f9f9f9);
    border-top: 1px solid var(--border-color, #e0e0e0);
}

.project-card-actions {
    display: flex;
    gap: 0.5rem;
}

.project-card-actions .btn {
    font-size: 1rem;
    padding: 0.4rem 0.75rem;
}

.project-card-footer > .btn {
    font-size: 1rem;
    padding: 0.45rem 1rem;
}

.project-active-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.project-active-indicator svg {
    width: 16px;
    height: 16px;
}

/* Projects List (Dashboard) */
.projects-list {
    display: flex;
    flex-direction: column;
    margin: 0 -0.5rem;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1rem;
    margin: 0 0.5rem;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.project-item:hover {
    background-color: var(--bg-muted, #f9f9f9);
}

.project-item:last-child {
    border-bottom: none;
}

.project-item-main {
    flex: 1;
    min-width: 0;
}

.project-item-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.project-item-name a {
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--text-color, #1f2937);
    text-decoration: none;
}

.project-item-name a:hover {
    color: var(--primary-color, #332917);
}

.project-item-code {
    font-size: 1.2rem;
    color: #6b7280;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
    background: #f3f4f6;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.project-item-client {
    font-size: 1.43rem;
    color: #6b7280;
    line-height: 1.4;
}

.project-item-status {
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.project-item-actions {
    flex-shrink: 0;
}

.project-item-actions .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1.35rem;
    font-weight: 500;
}

.project-active-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Projects list inside section card (Dashboard) */
.account-section-card .projects-list {
    padding: 0.75rem 1rem;
    margin: 0;
}

.account-section-card .project-item {
    margin: 0;
    padding: 0.875rem 0.75rem;
}

.account-section-card .project-item:first-child {
    border-top: none;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.client-card {
    background: white;
    border: 1px solid var(--border-color, #e0e0e0);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.client-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.client-card-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.client-avatar {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 2rem;
    flex-shrink: 0;
}

.client-card-title h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.client-mobile {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.client-card-body {
    padding: 1rem;
}

.client-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.client-info-item:last-child {
    margin-bottom: 0;
}

.client-info-item svg {
    flex-shrink: 0;
    color: var(--text-muted);
    width: 20px;
    height: 20px;
}

.client-card-footer {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    background: var(--bg-muted, #f9f9f9);
    border-top: 1px solid var(--border-color, #e0e0e0);
}

.client-card-footer .btn {
    font-size: 1.4rem;
    padding: 0.6rem 1.2rem;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.status-active {
    background: #dcfce7;
    color: #166534;
}

.status-completed {
    background: #dbeafe;
    color: #1e40af;
}

.status-on-hold {
    background: #fef3c7;
    color: #92400e;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Quicklink Icons - Primary variant (light bg by default, dark on hover) */
.quicklink-icon-primary {
    background: var(--color-primary-light, #F5F0EB) !important;
    color: var(--primary-color, #332917) !important;
}

.quicklink-icon-primary svg {
    color: var(--primary-color, #332917) !important;
}

.account-quicklink-card:hover .quicklink-icon-primary {
    background: var(--primary-color, #332917) !important;
}

.account-quicklink-card:hover .quicklink-icon-primary svg {
    color: white !important;
}

/* Form Enhancements */
.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color, #e0e0e0);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.form-group-lg {
    grid-column: span 1;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color, #e0e0e0);
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .architect-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .project-item {
        flex-wrap: wrap;
    }

    .project-item-status,
    .project-item-actions {
        width: 100%;
        margin-top: 0.5rem;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }
}

/* Project Selector Overrides */
.project-dropdown-search input {
    padding: 5px 10px;
    font-size: 1.2rem;
    height: 30px;
}

.project-dropdown-header h4 {
    font-size: 1rem;
}

.project-dropdown-new {
    font-size: 0.8rem;
}

.project-empty p {
    font-size: 1rem;
}

.project-dropdown-list .project-item-name {
    font-size: 1.17rem;
    font-weight: 500;
}

.project-dropdown-list .project-item-client {
    font-size: 1.07rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.project-dropdown-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border-color, #e0e0e0);
}

.project-clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
}

.project-clear-btn:hover {
    color: #991b1b;
}

.project-clear-btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Project Form - Optimized Theme Design
   ======================================== */

.project-form-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(51, 41, 23, 0.15);
}

.project-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #332917 0%, #261e11 100%);
    color: #fff;
}

.project-form-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.project-form-header-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
}

.project-form-header-text h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    font-family: inherit;
}

.project-form-header-text p {
    margin: 4px 0 0;
    font-size: 1.125rem;
    opacity: 0.85;
    color: #fff;
}

.project-form-body {
    padding: 1.5rem;
}

.project-form-body .form-section {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(51, 41, 23, 0.12);
}

.project-form-body .form-section:last-of-type {
    margin-bottom: 0;
}

.project-form-body .form-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(51, 41, 23, 0.04);
    border-bottom: 1px solid rgba(51, 41, 23, 0.08);
}

.project-form-body .form-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #332917;
    color: #fff;
    border-radius: 6px;
    flex-shrink: 0;
}

.project-form-body .form-section-icon svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

.project-form-body .form-section-icon-info {
    background: #332917;
}

.project-form-body .form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #332917;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0;
    padding: 0;
    border: none;
}

.project-form-body .form-section-content {
    padding: 1rem;
    background: #fff;
}

.project-form-body .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-form-body .form-row:last-child {
    margin-bottom: 0;
}

.project-form-body .form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-form-body .form-col {
    flex: 1;
    min-width: 0;
}

.project-form-body .form-col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.project-form-body .form-col-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

.project-form-body .form-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: #332917;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.project-form-body .form-label .required {
    color: #dc2626;
}

.project-form-body .form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #1f2937;
    background-color: #fff;
    border: 1px solid rgba(51, 41, 23, 0.2);
    border-radius: 6px;
    transition: border-color 0.15s, box-shadow 0.15s;
    height: auto;
}

.project-form-body .form-control:focus {
    border-color: #332917;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(51, 41, 23, 0.1);
}

.project-form-body .form-control::placeholder {
    color: #9ca3af;
    font-size: 1.25rem;
}

.project-form-body textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.project-form-body select.form-control {
    cursor: pointer;
    padding-right: 2rem;
}

.project-form-body .input-group {
    display: flex;
    gap: 0.75rem;
}

.project-form-body .input-group .form-control {
    flex: 1;
}

.project-form-body .input-group-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(51, 41, 23, 0.06);
    border: 1px solid rgba(51, 41, 23, 0.2);
    border-radius: 6px;
    color: #332917;
    transition: all 0.15s;
    flex-shrink: 0;
}

.project-form-body .input-group-btn:hover {
    background: #332917;
    border-color: #332917;
    color: #fff;
}

.project-form-body .input-prefix-group {
    display: flex;
}

.project-form-body .input-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    background: rgba(51, 41, 23, 0.06);
    border: 1px solid rgba(51, 41, 23, 0.2);
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: #332917;
    font-size: 1.25rem;
    font-weight: 600;
}

.project-form-body .input-prefix-group .form-control {
    border-radius: 0 6px 6px 0;
}

.project-form-body .form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(51, 41, 23, 0.12);
}

.project-form-body .btn-cancel {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #332917;
    background: #fff;
    border: 1px solid rgba(51, 41, 23, 0.25);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.project-form-body .btn-cancel:hover {
    background: rgba(51, 41, 23, 0.06);
    color: #261e11;
    border-color: rgba(51, 41, 23, 0.35);
}

.project-form-body .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    background: #332917;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.project-form-body .btn-submit svg {
    width: 20px;
    height: 20px;
}

.project-form-body .btn-submit:hover {
    background: #261e11;
}

/* Project Form - Back Link & Title */
.account-main .account-header-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.account-main .back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(51, 41, 23, 0.08);
    color: #332917;
    transition: all 0.15s;
    text-decoration: none;
}

.account-main .back-link svg {
    width: 22px;
    height: 22px;
}

.account-main .back-link:hover {
    background: #332917;
    color: #fff;
}

/* Project Form Responsive */
@media (max-width: 768px) {
    .project-form-body .form-row,
    .project-form-body .form-row-3 {
        flex-direction: column;
        display: flex;
    }

    .project-form-body .form-row-3 {
        grid-template-columns: 1fr;
    }

    .project-form-body .form-col-4,
    .project-form-body .form-col-8 {
        flex: 1;
        max-width: 100%;
    }

    .project-form-body .form-actions {
        flex-direction: column-reverse;
    }

    .project-form-body .btn-cancel,
    .project-form-body .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Project Detail Page Styles
   ======================================== */

.project-detail-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(51, 41, 23, 0.12);
    max-width: 900px;
}

/* Card Header */
.project-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #332917 0%, #261e11 100%);
    color: #fff;
    position: relative;
}

.project-detail-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.project-detail-header-icon svg {
    stroke: #fff;
}

.project-detail-header-text {
    flex: 1;
}

.project-detail-header-text h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
}

.project-detail-header-text p {
    margin: 4px 0 0;
    font-size: 0.95rem;
    opacity: 0.85;
    color: #fff;
}

.project-detail-status {
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.project-detail-status.status-active {
    background: #dcfce7;
    color: #166534;
}

.project-detail-status.status-completed {
    background: #dbeafe;
    color: #1e40af;
}

.project-detail-status.status-on-hold {
    background: #fef3c7;
    color: #92400e;
}

.project-detail-status.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Card Body */
.project-detail-body {
    padding: 1.5rem;
}

/* Info Sections */
.project-info-section {
    background: #fafaf9;
    border: 1px solid rgba(51, 41, 23, 0.1);
    border-radius: 10px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.project-info-section:last-child {
    margin-bottom: 0;
}

.project-info-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(51, 41, 23, 0.06);
    border-bottom: 1px solid rgba(51, 41, 23, 0.08);
    font-size: 1.2rem;
    font-weight: 600;
    color: #332917;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.project-info-section-title svg {
    color: #332917;
    flex-shrink: 0;
}

/* Info Grid */
.project-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.25rem;
}

.project-detail-body .project-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.project-info-item-full {
    grid-column: span 2;
}

.info-label {
    font-size: 1.08rem;
    font-weight: 600;
    color: #6b5b4f;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.info-value {
    font-size: 1.44rem;
    color: #1f2937;
    font-weight: 500;
}

.info-value-highlight {
    color: #166534;
    font-weight: 600;
}

.info-empty {
    color: #9ca3af;
    font-style: italic;
}

/* Actions Grid */
.project-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    padding: 1.25rem;
}

.project-action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(51, 41, 23, 0.15);
    border-radius: 8px;
    color: #332917;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.project-action-btn:hover {
    background: rgba(51, 41, 23, 0.04);
    border-color: rgba(51, 41, 23, 0.25);
    transform: translateY(-1px);
}

.project-action-btn svg {
    color: #332917;
    flex-shrink: 0;
}

.project-action-btn.project-action-primary {
    background: #332917;
    border-color: #332917;
    color: #fff;
}

.project-action-btn.project-action-primary:hover {
    background: #261e11;
    border-color: #261e11;
}

.project-action-btn.project-action-primary svg {
    color: #fff;
}

/* Header Badge */
.project-active-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #166534;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Header Actions */
.account-header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Project Detail Responsive */
@media (max-width: 768px) {
    .project-info-grid {
        grid-template-columns: 1fr;
    }

    .project-info-item-full {
        grid-column: span 1;
    }

    .project-actions-grid {
        grid-template-columns: 1fr;
    }

    .project-detail-header {
        flex-wrap: wrap;
    }

    .project-detail-status {
        margin-top: 0.75rem;
    }

    .project-detail-header-text h2 {
        font-size: 1.2rem;
    }
}
