:root {
    --wing-dark: #0a2460;
    --wing-purple: #6366f1;
    --wing-blue: #3b82f6;
    --wing-gradient: linear-gradient(135deg, #30aacb 0%, #348d81 100%);
    --submit-gradient: linear-gradient(135deg, #a251c5 0%, #c782e5 100%);
    --card-bg: #161e3d;
    --text: #ffffff;
    --border: #2d3748;
}

body {
    background-color: var(--wing-dark);
    color: var(--text);
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container { width: 100%; max-width: 500px; }

.logo {
    width: 20%;
    height: 20%;
}

h1, h2, h3 { 
    text-align: center;
    background: var(--wing-gradient);
    -webkit-background-clip: text; /* Vendor prefix for Chrome/Safari */
    background-clip: text;         /* Standard property for compatibility */
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

button {
    background: var(--wing-gradient);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.submit {
    background: var(--submit-gradient);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    width: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

select, input {
    width: 100%;
    padding: 14px;
    background: #0f172a;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    margin: 10px 0;
    box-sizing: border-box;
    font-size: 16px;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewbox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

td {
    background: #1e293b;
    padding: 14px;
}

td:first-child { border-radius: 12px 0 0 12px; }
td:last-child { border-radius: 0 12px 12px 0; text-align: right; }

.status-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
}