/* Modern UI Styles - Ocean Theme */
:root {
    --primary: #1e3a8a;
    --secondary: #0ea5e9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #fb7185;
    --light: #f0f9ff;
    --dark: #0c4a6e;
    --ocean-blue: #0ea5e9;
    --sand-color: #fef3c7;
    --coral-color: #fb7185;
    --seafoam-color: #5eead4;
    --radius: 10px;
    --shadow: 0 4px 6px rgba(14, 165, 233, 0.1);
}

body {
    font-family: 'Sarabun', sans-serif;
    background: #f8f9fa;
}

.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn {
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.table {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.alert {
    border-radius: var(--radius);
    border: none;
}

.form-control {
    border-radius: var(--radius);
    border: 2px solid #e1e8ed;
}

.form-control:focus {
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
