@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    min-height: 100vh;
}

.container, .dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-3px); }

.brin-header {
    background: linear-gradient(135deg, #0d47a1 0%, #1b5e20 100%);
    color: white;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brin-header::before {
    content: "🧬";
    position: absolute;
    font-size: 120px;
    opacity: 0.1;
    right: -20px;
    bottom: -30px;
}

.brin-header h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; }
.brin-header h1 span { background: linear-gradient(135deg, #ffd54f, #ff8f00); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn-primary {
    background: linear-gradient(135deg, #1b5e20, #0d47a1);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -5px rgba(27,94,32,0.4); }

.btn-secondary {
    background: linear-gradient(135deg, #ff8f00, #ff6d00);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-danger {
    background: linear-gradient(135deg, #d32f2f, #c62828);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 12px;
}

.btn-warning {
    background: linear-gradient(135deg, #f57c00, #ef6c00);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 12px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }

input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

input:focus, select:focus {
    outline: none;
    border-color: #1b5e20;
    box-shadow: 0 0 0 3px rgba(27,94,32,0.1);
}

.table-container { overflow-x: auto; background: white; border-radius: 20px; padding: 20px; }
table { width: 100%; border-collapse: collapse; }
th { background: #f5f5f5; padding: 15px; text-align: left; font-weight: 600; }
td { padding: 12px 15px; border-bottom: 1px solid #eee; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.menu-card {
    background: white;
    border-radius: 28px;
    padding: 30px 25px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.menu-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #1b5e20, #0d47a1);
    color: white;
}

.menu-card .icon { font-size: 48px; margin-bottom: 15px; display: inline-block; }
.menu-card h3 { font-size: 20px; margin-bottom: 8px; }

.footer {
    margin-top: 60px;
    padding: 30px;
    background: white;
    border-radius: 24px;
    text-align: center;
}

.footer .creators { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 15px; }
.creator-name { font-weight: 600; color: #0d47a1; }

.alert-success { background: #e8f5e9; color: #2e7d32; padding: 15px; border-radius: 16px; margin: 20px 0; border-left: 4px solid #2e7d32; }
.alert-error { background: #ffebee; color: #c62828; padding: 15px; border-radius: 16px; margin: 20px 0; border-left: 4px solid #c62828; }

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d47a1, #1b5e20);
}

.auth-card {
    background: white;
    padding: 40px;
    border-radius: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 30px 50px rgba(0,0,0,0.2);
}

.auth-card h2 { font-size: 28px; margin-bottom: 10px; color: #1b5e20; }
.auth-logo { text-align: center; margin-bottom: 30px; }
.auth-logo .logo-icon { font-size: 60px; }