/* Estilos específicos para el Portal de Colaboradores */

.gateway-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(6, 6, 8, 0.8), #060608);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.gateway-card {
    max-width: 400px;
    width: 90%;
    padding: 3rem;
    text-align: center;
    border-color: var(--secondary);
}

.colab-nav {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(6, 6, 8, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 100;
}

.colab-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    padding: 5px;
    border-radius: 12px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.tab-btn.active {
    background: var(--secondary);
    color: white;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-size: 0.8rem;
}

#userRole {
    background: var(--primary);
    color: black;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.6rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dev Grid */
.dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.notes-container {
    height: 300px;
    overflow-y: auto;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.note-card {
    background: var(--glass-strong);
    padding: 0.8rem;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 3px solid var(--primary);
    font-size: 0.9rem;
}

.note-input {
    display: flex;
    gap: 10px;
}

.note-input input {
    flex: 1;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem;
    color: white;
}

/* Table styles for Influencers */
.colab-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.colab-table th, .colab-table td {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.colab-table th {
    color: var(--text-dim);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.badge-status {
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    background: var(--primary-dim);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.colab-form input, .colab-form select, .colab-form textarea {
    width: 100%;
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 1rem;
    border-radius: 10px;
    color: white;
    margin-bottom: 1rem;
    font-family: inherit;
}

.colab-mini-card {
    background: var(--glass);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
}

/* Economic Oracle Styles */
.oracle-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
}

.o-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.o-stat span {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.o-stat strong {
    font-size: 1.1rem;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
}
