/* Dashboard Specific Styles */
.dashboard-container {
    padding: 100px 0 50px;
}

.welcome-section {
    text-align: center;
    margin-bottom: 50px;
}

.welcome-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.welcome-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.welcome-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats-section {
    margin-bottom: 60px;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-card h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Interview Modes Section */
.interview-modes {
    margin-bottom: 60px;
}

.interview-modes h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mode-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mode-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.mode-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Recent History Section */
.recent-history h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.history-table {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--light-color);
    font-weight: 600;
}

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

.view-report {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.view-report:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}