* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

/* Top Navigation - Matching team squad style */
.top-nav {
    background-color: #1e293b;
    color: white;
    padding: 16px 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.manager-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.nav-buttons {
    display: flex;
    gap: 8px;
}

.nav-btn {
    background: #e2e8f0;
    color: #1e293b;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-btn:hover {
    background: #cbd5e1;
    transform: translateY(-1px);
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 24px;
}

.card-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid #e2e8f0;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #b45309;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-content {
    padding: 24px;
}

/* Career Table */
.career-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.career-table th {
    background: #f8fafc;
    color: #374151;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
}

.career-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    background: white;
}

.career-table tr:hover td {
    background: #f8fafc;
}

.career-table a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.career-table a:hover {
    text-decoration: underline;
    color: #0052a3;
}

.career-number {
    font-weight: 600;
    color: #374151;
}

.team-name {
    font-weight: 500;
    color: #1e293b;
}

.season-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.action-link {
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s;
}

.action-link:hover {
    background: #bfdbfe;
    transform: translateY(-1px);
}

.action-disabled {
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-style: italic;
}

/* Form Sections */
.form-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

.form-section h4 {
    color: #374151;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 600;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.form-group select {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.create-btn {
    background: #059669;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.create-btn:hover:not(:disabled) {
    background: #047857;
    transform: translateY(-1px);
}

.create-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

.info-card h4 {
    color: #374151;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    color: #64748b;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li:before {
    content: "🚀";
    font-size: 12px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #e2e8f0;
}

.empty-state h3 {
    color: #374151;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.empty-state p {
    margin: 0;
    font-size: 14px;
}

.notification-empty {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .career-table {
        font-size: 14px;
    }

    .career-table th,
    .career-table td {
        padding: 8px 12px;
    }

    .form-row {
        gap: 8px;
    }
} 