/* AI Sprint - Project Page Styles */
/* Extends styles.css with project-specific components */

/* Desktop Optimization for Project Pages */
@media (min-width: 800px) {
    .container {
        max-width: 900px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

/* Project Hero */
.project-hero {
    text-align: center;
    padding: 1rem 0 2rem;
}

.project-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.project-owner {
    font-size: 1.1rem;
    color: var(--text-soft);
    font-weight: 600;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.content-card h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    font-size: 1.25rem;
}

/* Highlight Text */
.highlight-text {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

/* Build List */
.build-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.build-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
    line-height: 1.5;
}

.build-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green-mid);
    font-weight: bold;
}

.build-list li strong {
    color: var(--green-dark);
}

/* Scope Note */
.scope-note {
    background: linear-gradient(135deg, var(--green-pale), var(--yellow-pale));
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.scope-note strong {
    color: var(--green-dark);
}

/* Cut List */
.cut-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cut-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-soft);
    line-height: 1.5;
}

.cut-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
}

/* Schema Table */
.table-wrapper {
    overflow-x: auto;
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
}

.schema-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.schema-table th {
    text-align: left;
    padding: 0.75rem;
    background: var(--green-pale);
    color: var(--green-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--green-light);
}

.schema-table th:first-child {
    border-radius: var(--radius-sm) 0 0 0;
}

.schema-table th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

.schema-table td {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--green-pale);
    color: var(--text);
}

.schema-table tr:last-child td {
    border-bottom: none;
}

.schema-table tr:hover td {
    background: rgba(200, 230, 201, 0.3);
}

/* AI Card */
.ai-card {
    border-left: 4px solid var(--orange);
}

.ai-card p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.ai-example {
    background: var(--yellow-pale);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
    font-style: italic;
    color: var(--text);
}

.ai-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.ai-list li {
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.ai-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* Code Block */
.code-block {
    background: #2D3436;
    color: #DFE6E9;
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto;
}

.code-block strong {
    color: var(--orange-light);
}

.code-block.whatsapp {
    background: #075E54;
    color: #ECE5DD;
}

.code-block.guide {
    background: #1A1A2E;
}

.code-block.json {
    background: #1E1E1E;
    color: #9CDCFE;
}

/* Metric Card */
.metric-card {
    text-align: center;
}

.metric-highlight {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.metric-value {
    display: block;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.metric-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-supporting {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin: 0;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-left: 3px solid var(--green-pale);
    margin-left: 18px;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-item:first-child {
    padding-top: 0;
}

.timeline-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent;
}

.timeline-item .day {
    position: absolute;
    left: -21px;
    width: 36px;
    height: 36px;
    background: var(--green-pale);
    color: var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.timeline-item.checkpoint .day {
    background: var(--orange);
    color: white;
}

.timeline-item.demo .day {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: white;
}

.timeline-content {
    flex: 1;
}

.timeline-content strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.checkpoint-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.demo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Risks */
.risks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.risk-item {
    background: var(--orange-pale);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    line-height: 1.5;
}

.risk-item strong {
    color: var(--text);
}

.risk-item .mitigation {
    display: block;
    margin-top: 0.5rem;
    color: var(--green-dark);
    font-weight: 500;
}

/* Warning Card */
.warning-card {
    border-left: 4px solid var(--orange);
    background: linear-gradient(to right, var(--orange-pale), white);
}

.warning-card p {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.warning-card .small-text {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Privacy List */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
}

.privacy-list li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

.privacy-list.not-collected li {
    color: var(--text-soft);
}

/* Problem Stats */
.problem-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.problem-stats .stat {
    flex: 1;
    min-width: 80px;
    background: linear-gradient(135deg, var(--coral-pale, #FFE5E5), var(--orange-pale));
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.problem-stats .stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--coral, #E57373);
    margin-bottom: 0.25rem;
}

.problem-stats .stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Solution Flow */
.solution-flow {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

/* Flow Steps Container (for Como Funciona sections) */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--green-pale);
    border-radius: var(--radius-md);
}

.flow-step .step-number {
    width: 28px;
    height: 28px;
    background: var(--green-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.flow-step .step-content {
    flex: 1;
}

.flow-step .step-content strong {
    display: block;
    color: var(--green-dark);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.flow-step .step-content p {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* AI Highlight */
.ai-highlight {
    background: linear-gradient(135deg, var(--orange-pale), var(--yellow-pale));
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
    border-left: 3px solid var(--orange);
}

.ai-highlight strong {
    color: var(--orange-dark, #E65100);
}

/* Infographic Container */
.infographic-section {
    padding: 1.5rem;
}

.infographic-container {
    text-align: center;
    background: linear-gradient(135deg, #f8faf8, #fefefe);
    border-radius: var(--radius-lg);
    padding: 1rem;
    border: 1px solid var(--green-pale);
}

.infographic-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.infographic-placeholder {
    background: linear-gradient(135deg, var(--green-pale), var(--yellow-pale));
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    color: var(--text-soft);
    font-style: italic;
}

/* Inline Infographic - Flow Diagram */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    overflow-x: auto;
}

.flow-node {
    flex: 1;
    min-width: 120px;
    max-width: 160px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid var(--green-pale);
    position: relative;
}

.flow-node.input {
    border-color: var(--orange);
    background: linear-gradient(135deg, white, var(--orange-pale));
}

.flow-node.process {
    border-color: var(--green-mid);
    background: linear-gradient(135deg, white, var(--green-pale));
}

.flow-node.output {
    border-color: var(--green-dark);
    background: linear-gradient(135deg, white, var(--green-pale));
}

.flow-node.ai {
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--orange-pale), var(--yellow-pale));
}

.flow-node .node-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.flow-node .node-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.flow-node .node-desc {
    font-size: 0.75rem;
    color: var(--text-soft);
    line-height: 1.3;
}

.flow-arrow {
    flex-shrink: 0;
    color: var(--green-mid);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Vertical Flow for Mobile */
@media (max-width: 700px) {
    .flow-diagram {
        flex-direction: column;
        gap: 0.75rem;
    }

    .flow-node {
        max-width: 100%;
        min-width: auto;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--green-light);
}

.stat-box {
    text-align: center;
}

.stat-box .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.stat-box .stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-dark);
}

.stat-box .stat-text {
    font-size: 0.75rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Example Mockup */
.example-mockup {
    background: #F8F9FA;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #E9ECEF;
}

.mockup-header {
    background: var(--green-dark);
    color: white;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.mockup-filter {
    font-size: 0.8rem;
    opacity: 0.8;
}

.mockup-table {
    padding: 0.5rem;
}

.mockup-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.mockup-row.three-col {
    grid-template-columns: 1.5fr 1fr 1fr;
}

.mockup-row.header {
    background: white;
    font-weight: 600;
    color: var(--text-soft);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mockup-row:not(.header) {
    background: white;
    margin-top: 0.25rem;
}

.mockup-row .status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

.mockup-row .status.pending {
    background: var(--orange-pale);
    color: var(--orange-dark, #E65100);
}

.mockup-row .status.sent {
    background: var(--yellow-pale);
    color: #F57C00;
}

.mockup-row .status.confirmed {
    background: var(--green-pale);
    color: var(--green-dark);
}

/* Responsive */
@media (max-width: 600px) {
    .project-hero h1 {
        font-size: 1.75rem;
    }

    .content-card {
        padding: 1.25rem 1.5rem;
    }

    .schema-table {
        font-size: 0.8rem;
    }

    .schema-table th,
    .schema-table td {
        padding: 0.5rem;
    }

    .code-block {
        font-size: 0.75rem;
        padding: 1rem;
    }

    .timeline-item {
        padding-left: 1.25rem;
    }

    .privacy-list {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   EDIT MODAL + MENTOR CHAT + TOAST
   ===================================================== */

/* Modal Overlay */
.edit-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.edit-modal {
    background: white;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.edit-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--green-pale);
}

.edit-modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--green-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-soft);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text);
}

/* Tabs */
.edit-tabs {
    display: flex;
    gap: 0;
    padding: 0 1.5rem;
    border-bottom: 1px solid var(--green-pale);
    overflow-x: auto;
}

.edit-tabs .tab {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-soft);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.edit-tabs .tab:hover {
    color: var(--green-dark);
}

.edit-tabs .tab.active {
    color: var(--green-dark);
    border-bottom-color: var(--green-dark);
}

/* Panels */
.edit-panels {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.tab-panel label:first-child {
    margin-top: 0;
}

.tab-panel textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--green-pale);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s;
}

.tab-panel textarea:focus {
    outline: none;
    border-color: var(--green-dark);
}

/* Footer */
.edit-modal-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--green-pale);
    justify-content: flex-end;
}

.edit-modal-footer button {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary {
    background: white;
    border: 2px solid var(--green-pale);
    color: var(--text-soft);
}

.btn-secondary:hover {
    border-color: var(--green-mid);
    color: var(--text);
}

.btn-primary {
    background: var(--green-dark);
    border: 2px solid var(--green-dark);
    color: white;
}

.btn-primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
}

.btn-primary:disabled,
.btn-rebuild:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-rebuild {
    background: var(--orange);
    border: 2px solid var(--orange);
    color: white;
}

.btn-rebuild:hover {
    background: var(--orange-light);
    border-color: var(--orange-light);
}

/* Infographic Regeneration Section */
.infographic-regen-section {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--green-pale);
}

.infographic-preview-container {
    margin-bottom: 0.75rem;
    text-align: center;
}

.infographic-preview {
    max-height: 150px;
    width: auto;
    max-width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--green-pale);
    object-fit: contain;
}

.btn-regen {
    width: 100%;
    padding: 0.6rem 1.25rem;
    background: var(--orange);
    border: 2px solid var(--orange);
    color: white;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-regen:hover:not(:disabled) {
    background: var(--orange-light);
    border-color: var(--orange-light);
}

.btn-regen:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.regen-note {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin: 0.5rem 0 0;
    text-align: center;
}

/* Amelia Mentor Chat Tab */
.mentor-chat {
    display: flex;
    flex-direction: column;
    height: 400px;
}

.mentor-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--green-pale);
    margin-bottom: 1rem;
}

.mentor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.mentor-intro {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin: 0;
}

.mentor-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-right: 0.5rem;
}

.mentor-loading,
.mentor-error {
    color: var(--text-soft);
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

.mentor-error {
    color: var(--coral, #E57373);
}

.mentor-message {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    max-width: 85%;
    line-height: 1.5;
    font-size: 0.95rem;
}

.mentor-message.user {
    background: var(--green-dark);
    color: white;
    align-self: flex-end;
}

.mentor-message.amelia {
    background: var(--green-pale);
    color: var(--text);
    align-self: flex-start;
}

.mentor-input-area {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mentor-input-area textarea {
    flex: 1;
    resize: none;
    height: 60px;
    padding: 0.75rem 1rem;
    border: 2px solid var(--green-pale);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
}

.mentor-input-area textarea:focus {
    outline: none;
    border-color: var(--green-dark);
}

.mentor-input-area textarea:disabled,
.mentor-input-area button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mentor-input-area button {
    padding: 0 1.25rem;
    background: var(--green-dark);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
}

.mentor-input-area button:hover:not(:disabled) {
    background: var(--green-mid);
}

.mentor-notes {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--green-pale);
}

.mentor-notes h4 {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.mentor-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mentor-notes li {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    background: #FFF9E6;
    border-left: 3px solid var(--orange);
    margin-bottom: 0.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-dark);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2000;
    animation: slideUp 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 600px) {
    .edit-modal {
        max-height: 95vh;
        border-radius: var(--radius-lg);
    }

    .edit-tabs {
        padding: 0 1rem;
    }

    .edit-tabs .tab {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }

    .edit-panels {
        padding: 1rem;
    }

    .edit-modal-footer {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .edit-modal-footer button {
        flex: 1;
        min-width: 45%;
    }

    .mentor-chat {
        height: 350px;
    }
}
