:root {
  --bg-dark-purple: #1a1a2e;
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --primary-pink: #ff1493;
  --primary-orange: #ff8c00;
  --border-color: rgba(255, 255, 255, 0.1);
  --gradient: linear-gradient(135deg, #ff1493, #ff8c00);
}
/* Indus AI Week Partner System - Main Stylesheet */
:root {
    --primary-pink: #ff1493;
    --primary-orange: #ff6600;
    --bg-dark-purple: #1a0033;
    --text-white: #ffffff;
    --text-gray: #d1d5db;
    --border-color: rgba(255, 20, 147, 0.2);
    --gradient: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg-dark-purple); color: var(--text-white); line-height: 1.6; overflow-x: hidden; }
a { color: var(--primary-pink); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--primary-orange); }

/* Header */
.dashboard-header { background: rgba(26, 0, 51, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
.dashboard-header nav { max-width: 1400px; margin: 0 auto; padding: 0.75rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.25rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo img { height: 35px; }
.header-right { display: flex; align-items: center; gap: 1.5rem; }
.notification-btn, .user-btn { background: none; border: none; color: var(--text-gray); cursor: pointer; padding: 0.5rem; }
.notification-btn:hover, .user-btn:hover { color: var(--primary-pink); }
.user-avatar { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border-color); }
.notifications-dropdown, .user-dropdown { position: absolute; top: 100%; right: 0; width: 200px; background: var(--bg-dark-purple); border: 1px solid var(--border-color); border-radius: 12px; display: none; z-index: 1001; }
.notifications-dropdown.active, .user-dropdown.active { display: block; }
.notifications-dropdown a, .user-dropdown a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; color: var(--text-gray); border-radius: 8px; }
.notifications-dropdown a:hover, .user-dropdown a:hover { background: rgba(255, 20, 147, 0.1); color: var(--primary-pink); }

/* Dashboard Layout */
.dashboard-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; min-height: calc(100vh - 80px); max-width: 1400px; margin: 0 auto; padding: 2rem; }
.sidebar { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color); border-radius: 16px; padding: 1.5rem; height: fit-content; position: sticky; top: 100px; }
.sidebar-menu { list-style: none; }
.sidebar-menu li { margin-bottom: 0.5rem; }
.sidebar-menu a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; color: var(--text-gray); border-radius: 10px; }
.sidebar-menu a:hover, .sidebar-menu a.active { background: rgba(255, 20, 147, 0.1); color: var(--primary-pink); }
.sidebar-section h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-gray); margin-bottom: 0.75rem; padding-left: 1rem; }
.dashboard-content h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.dashboard-content > p { color: var(--text-gray); margin-bottom: 2rem; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.stat-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color); border-radius: 12px; padding: 1.5rem; transition: all 0.3s; }
.stat-card:hover { transform: translateY(-4px); border-color: var(--primary-pink); box-shadow: 0 8px 30px rgba(255, 20, 147, 0.15); }
.stat-card .stat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.stat-card .stat-value { font-size: 2rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-card .stat-label { font-size: 0.9rem; color: var(--text-gray); margin-top: 0.25rem; }

/* Cards */
.card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color); border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.card-header h3 { font-size: 1.1rem; }
.card-badge { padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.card-badge.draft { background: rgba(156, 163, 175, 0.2); color: var(--text-gray); }
.card-badge.submitted { background: rgba(59, 130, 246, 0.2); color: #3B82F6; }
.card-badge.under_review { background: rgba(245, 158, 11, 0.2); color: #F59E0B; }
.card-badge.approved { background: rgba(16, 185, 129, 0.2); color: #10B981; }
.card-badge.rejected { background: rgba(239, 68, 68, 0.2); color: #EF4444; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 10px; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; text-decoration: none; }
.btn-primary { background: var(--gradient); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3); }
.btn-secondary { background: rgba(255, 255, 255, 0.05); color: var(--text-gray); border: 1px solid var(--border-color); }
.btn-secondary:hover { border-color: var(--primary-pink); background: rgba(255, 20, 147, 0.1); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-danger { background: rgba(239, 68, 68, 0.2); color: #EF4444; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--text-gray); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); border-radius: 10px; color: var(--text-white); font-size: 0.95rem; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-pink); box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1); }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #EF4444; }
.error-message { display: block; color: #EF4444; font-size: 0.8rem; margin-top: 0.25rem; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.9rem; color: var(--text-gray); }

/* Alerts */
.alert { padding: 1rem 1.25rem; border-radius: 10px; margin-bottom: 1.5rem; font-size: 0.95rem; }
.alert-error { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); color: #EF4444; }
.alert-success { background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.3); color: #10B981; }
.alert-warning { background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.3); color: #F59E0B; }

/* Tables */
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 0.75rem; }
th { color: var(--text-gray); font-weight: 500; }
tr { border-bottom: 1px solid var(--border-color); }

/* Responsive */
@media (max-width: 768px) {
    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Auth Pages Styles */
.auth-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.auth-container {
    background: rgba(30, 30, 40, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.auth-container-large {
    max-width: 600px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    max-height: 60px !important;
    width: auto !important;
    margin-bottom: 1rem;
}

.auth-header h1 {
    color: var(--text-white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.auth-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.auth-footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Fix exploding images */
img {
    max-width: 100%;
    height: auto;
}

/* Force auth logo size */
.auth-logo {
    max-width: 200px !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

/* Fix dashboard visibility */
.dashboard-layout { min-height: calc(100vh - 60px); display: grid !important; }
.sidebar { background: rgba(255, 255, 255, 0.08) !important; padding: 20px !important; }
.main-content { color: white !important; }
.stats-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important; gap: 1rem !important; }
.stat-card { background: rgba(255, 255, 255, 0.08) !important; padding: 1rem !important; border-radius: 12px !important; }
