/* assets/css/style.css */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Cards */
.feature-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Form Styles */
.form-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.form-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.form-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Table Styles */
.table-container {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.table thead th {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

/* Status Badges */
.badge-pending {
    background-color: var(--warning-color);
    color: #000;
}

.badge-verified {
    background-color: var(--info-color);
    color: #fff;
}

.badge-accepted {
    background-color: var(--success-color);
    color: #fff;
}

.badge-rejected {
    background-color: var(--danger-color);
    color: #fff;
}

/* Dashboard Cards */
.dashboard-card {
    border-radius: 15px;
    padding: 20px;
    color: white;
    margin-bottom: 20px;
}

.dashboard-card i {
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.dashboard-card .card-title {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.dashboard-card .card-value {
    font-size: 2rem;
    font-weight: bold;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), #0099ff);
}

.bg-success-gradient {
    background: linear-gradient(135deg, var(--success-color), #20c997);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, var(--warning-color), #fd7e14);
}

.bg-info-gradient {
    background: linear-gradient(135deg, var(--info-color), #0d6efd);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .form-container {
        padding: 20px;
    }
}