﻿/* Project Management - Complete Custom Styling */

.pm-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Header */
.pm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.pm-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color, #0C3C78);
    margin: 0;
}

/* Buttons */
.pm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.pm-btn-primary {
    background: var(--primary-color, #0C3C78);
    color: white;
}

    .pm-btn-primary:hover {
        background: #0a2f5e;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(12, 60, 120, 0.3);
    }

    .pm-btn-primary:active {
        transform: translateY(0);
    }

.pm-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Toolbar */
.pm-toolbar {
    margin-bottom: 1.5rem;
}

.pm-search {
    position: relative;
    max-width: 400px;
}

.pm-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    pointer-events: none;
}

.pm-search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    font-size: 0.95rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
    font-family: inherit;
}

    .pm-search-input:focus {
        outline: none;
        border-color: var(--primary-color, #0C3C78);
        box-shadow: 0 0 0 3px rgba(12, 60, 120, 0.1);
    }

/* Loading State */
.pm-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pm-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid var(--primary-color, #0C3C78);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Empty State */
.pm-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pm-empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.pm-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color, #0C3C78);
    margin: 0 0 0.5rem 0;
}

.pm-empty-text {
    font-size: 1rem;
    color: #666;
    margin: 0 0 2rem 0;
}

/* Table */
.pm-table-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

    .pm-table thead {
        background: #f8f9fa;
        border-bottom: 2px solid #e0e0e0;
    }

    .pm-table th {
        padding: 1rem;
        text-align: left;
        font-weight: 700;
        color: var(--primary-color, #0C3C78);
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .pm-table tbody tr {
        border-bottom: 1px solid #f0f0f0;
        transition: background-color 0.15s ease;
    }

        .pm-table tbody tr:hover {
            background: #f8f9fa;
        }

        .pm-table tbody tr:last-child {
            border-bottom: none;
        }

    .pm-table td {
        padding: 1rem;
        vertical-align: middle;
    }

.pm-project-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.pm-text-muted {
    color: #666;
    font-size: 0.9rem;
}

/* Badges */
.pm-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
}

.pm-badge-location {
    background: var(--accent-color, #1E88E5);
    color: white;
}

.pm-badge-count {
    background: #e3f2fd;
    color: #1976d2;
    min-width: 32px;
    justify-content: center;
}

/* Actions */
.pm-actions-col {
    width: 140px;
    text-align: right;
}

.pm-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.pm-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    background: #f5f5f5;
}

    .pm-action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

.pm-action-edit:hover {
    background: #e3f2fd;
}

.pm-action-view:hover {
    background: #f3e5f5;
}

.pm-action-delete:hover {
    background: #ffebee;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pm-container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pm-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .pm-title {
        font-size: 1.5rem;
    }

    .pm-btn {
        width: 100%;
        justify-content: center;
    }

    .pm-search {
        max-width: 100%;
    }

    .pm-table-wrapper {
        overflow-x: auto;
    }

    .pm-table {
        min-width: 800px;
    }

        .pm-table th,
        .pm-table td {
            padding: 0.75rem 0.5rem;
            font-size: 0.875rem;
        }

    .pm-empty {
        padding: 3rem 1.5rem;
    }

    .pm-empty-icon {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .pm-container {
        padding: 1rem;
    }

    .pm-title {
        font-size: 1.25rem;
    }

    .pm-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .pm-empty-title {
        font-size: 1.25rem;
    }

    .pm-empty-text {
        font-size: 0.9rem;
    }
}

/* project approval*/
* {
    box-sizing: border-box;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.page-header {
    margin-bottom: 2rem;
}

.header-content h3 {
    margin: 0 0 0.25rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.header-subtitle {
    margin: 0;
    color: #6b7280;
    font-size: 1rem;
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.alert-icon {
    font-size: 1.25rem;
    font-weight: bold;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Info Banner */
.info-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    border: 1px solid #93c5fd;
}

.info-icon {
    font-size: 1.25rem;
}

/* Loading */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #0C3C78;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-container p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
}

    .empty-state.small {
        padding: 3rem 1.5rem;
    }

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h4 {
    margin: 0 0 0.5rem 0;
    color: #374151;
    font-size: 1.5rem;
    font-weight: 600;
}

.empty-state p {
    margin: 0;
    color: #6b7280;
    font-size: 1rem;
}

/* Table */
.projects-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
}

    .projects-table thead {
        background: #f9fafb;
        border-bottom: 2px solid #e5e7eb;
    }

    .projects-table th {
        padding: 1rem 1.5rem;
        text-align: left;
        font-weight: 600;
        font-size: 0.875rem;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .projects-table td {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid #f3f4f6;
    }

    .projects-table tbody tr {
        transition: background 0.15s;
    }

        .projects-table tbody tr:hover {
            background: #f9fafb;
        }

        .projects-table tbody tr:last-child td {
            border-bottom: none;
        }

.project-name {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

    .project-name strong {
        color: #1f2937;
        font-size: 1rem;
    }

    .project-name small {
        color: #6b7280;
        font-size: 0.875rem;
    }

.location-cell {
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.promoter-cell {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.promoter-name {
    color: #1f2937;
    font-weight: 500;
}

.promoter-email {
    color: #6b7280;
    font-size: 0.875rem;
}

.date-cell {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

    .date-cell span {
        color: #1f2937;
        font-weight: 500;
    }

    .date-cell small {
        color: #6b7280;
        font-size: 0.875rem;
    }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-icon {
    font-size: 1rem;
    line-height: 1;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-icon-sm {
    padding: 0.5rem;
    font-size: 1.25rem;
}

.btn-secondary {
    background: white;
    color: #4b5563;
    border: 2px solid #e5e7eb;
}

    .btn-secondary:hover {
        background: #f9fafb;
        border-color: #0C3C78;
        color: #0C3C78;
    }

.btn-approve {
    background: #10b981;
    color: white;
}

    .btn-approve:hover {
        background: #059669;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        transform: translateY(-1px);
    }

.btn-reject {
    background: #ef4444;
    color: white;
}

    .btn-reject:hover {
        background: #dc2626;
        box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        transform: translateY(-1px);
    }

.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    animation: fadeIn 0.2s ease-out;
}

.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease-out;
}

.modal-large {
    max-width: 1000px;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .modal-header h3 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 600;
        color: #0C3C78;
    }

.modal-subtitle {
    margin: 0.25rem 0 0 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

    .modal-close:hover {
        background: #f3f4f6;
        color: #1f2937;
    }

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.media-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

    .media-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.media-header {
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.media-category {
    font-weight: 600;
    color: #0C3C78;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.media-preview-container {
    position: relative;
    width: 100%;
    height: 180px;
    background: #f3f4f6;
}

.media-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0.75rem;
    color: #6b7280;
}

.pdf-icon {
    font-size: 3rem;
}

.pdf-label {
    font-weight: 500;
    font-size: 0.875rem;
}

.media-footer {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.media-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.media-filename {
    font-weight: 500;
    color: #1f2937;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-size {
    color: #6b7280;
    font-size: 0.75rem;
}

.media-action {
    color: #0C3C78;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s;
}

    .media-action:hover {
        color: #0a2f5f;
    }

/* Animations */
@@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
    }

    .header-content h3 {
        font-size: 1.5rem;
    }

    .projects-table-container {
        overflow-x: auto;
    }

    .projects-table {
        min-width: 900px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-sm {
        width: 100%;
        justify-content: center;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-width: 100%;
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }
}

/*PROJECT DIALOG*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

    .modal-header h3 {
        margin: 0;
        color: var(--primary-color, #0C3C78);
        font-size: 1.25rem;
    }

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

    .modal-close:hover {
        color: #000;
    }

.modal-body {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #333;
        font-size: 0.9rem;
    }

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    font-family: inherit;
}

    .form-input:focus {
        outline: none;
        border-color: var(--primary-color, #0C3C78);
    }

.form-info {
    padding: 0.75rem;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #666;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
}

    .btn-secondary:hover {
        background: #e0e0e0;
    }

.btn-primary {
    background: var(--primary-color, #0C3C78);
    color: white;
}

    .btn-primary:hover:not(:disabled) {
        background: #0a2f5e;
    }

    .btn-primary:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }


/* Existing Media Section */
.existing-media-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.subsection-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #495057;
}

.media-hint {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-style: italic;
}

.existing-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.existing-media-item {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.media-preview {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
}

.media-thumbnail {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.file-icon-large {
    font-size: 3rem;
}

.media-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.media-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #007bff;
    text-transform: capitalize;
}

.media-filename {
    font-size: 0.85rem;
    color: #495057;
    word-break: break-word;
}

.media-size {
    font-size: 0.75rem;
    color: #6c757d;
}

.btn-remove-existing {
    padding: 0.5rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}

    .btn-remove-existing:hover {
        background: #c82333;
    }

.modal-content-wide {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.selection-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.progress-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    transition: width 0.3s ease;
}

.floors-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floor-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
}

    .floor-card.complete {
        border-color: #4caf50;
        background: #f1f8f4;
    }

    .floor-card.expanded {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.floor-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    user-select: none;
}

    .floor-card-header:hover {
        background: rgba(0,0,0,0.02);
    }

.floor-card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.floor-icon {
    font-size: 1.5rem;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: bold;
}

    .status-icon.complete {
        background: #4caf50;
        color: white;
    }

    .status-icon.incomplete {
        background: #ff9800;
        color: white;
    }

.expand-icon {
    color: #666;
    font-size: 0.875rem;
}

.floor-card-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-top: 1px solid #e0e0e0;
}

.card-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.validation-hint {
    color: #ff9800;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}
.amenity-input-wrapper {
    display: flex;
    gap: .5rem;
    margin-bottom: .5rem;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.amenity-chip {
    background: #e0f7fa;
    color: #006064;
    padding: .25rem .75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.chip-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #004d40;
    font-weight: bold;
    font-size: 1rem;
}
.pm-action-edit {
    background: #2196f3;
    color: white;
}

    .pm-action-edit:hover {
        background: #1976d2;
    }
