:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --danger-color: #e74c3c;
    --warning-color: #f1c40f;
    --dark-color: #2c3e50;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-main: #333333;
    --text-muted: #7f8c8d;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
	margin:0 auto;
}

/* Card Style */
.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: white;
    padding: 4rem 2rem;
    border-radius: 0 0 30px 30px;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h2 { font-weight: 700; margin-bottom: 1rem; text-shadow: 0 0 3px #000000;}
.hero img { 
    max-width: 100%; 
    border-radius: 15px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Inputs & Buttons */
input[type="text"], input[type="password"], select, textarea {
    height: 48px;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input:focus { border-color: var(--primary-color) !important; }

.button.button-primary, button.button-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    height: 48px;
    line-height: 48px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.button.button-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Status Badges */
.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
}

.submitted { background: #fdf6e3; color: #b58900; }
.verified { background: #e1f5fe; color: #0288d1; }
.issued { background: #e8f5e9; color: #2e7d32; }
.rejected { background: #ffebee; color: #c62828; }

/* Table Styling */
table { width: 100%; border-collapse: separate; border-spacing: 0 10px; }
th { color: var(--text-muted); font-weight: 600; border-bottom: 1px solid #eee; padding: 12px; }
td { background: white; padding: 15px; vertical-align: middle; }
tr td:first-child { border-radius: 8px 0 0 8px; }
tr td:last-child { border-radius: 0 8px 8px 0; }