/* Fascinação Admissions Manager Styles */

/* General Dashboard */
.fasc-dashboard {
    font-family: 'Inter', sans-serif;
    color: #333;
    max-width: 100%;
}

.fasc-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.fasc-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.fasc-status-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fasc-status-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.fasc-status-value {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fasc-status-value.incomplete { color: #d97706; }
.fasc-status-value.submitted { color: #2563eb; }
.fasc-status-value.accepted { color: #059669; }
.fasc-status-value.rejected { color: #dc2626; }

.fasc-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.fasc-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-1px);
}

/* Recommendations Section */
.fasc-section {
    margin-top: 3rem;
}

.fasc-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.fasc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.fasc-table th, .fasc-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}

.fasc-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #4b5563;
    font-size: 0.85rem;
    text-transform: uppercase;
}

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

/* Invite Form */
.fasc-invite-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.fasc-form-group {
    margin-bottom: 1.25rem;
}

.fasc-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.fasc-form-group input,
.fasc-form-group select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
}

/* Admin Styles */
.fasc-admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.fasc-admin-table th {
    background: #f3f4f6;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.fasc-admin-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.fasc-modal {
    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;
}

.fasc-modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.fasc-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}
