:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --secondary: #10b981;
    --secondary-hover: #059669;
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --dark: #1e293b;
    --darker: #0f172a;
    --light: #f8fafc;
    --border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(30, 41, 59, 0.7);
    --input-bg: rgba(15, 23, 42, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--darker), var(--dark));
    min-height: 100vh;
    color: var(--light);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background-image: linear-gradient(135deg, #6366f1, #10b981);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.card {
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.input-group {
    flex: 1;
    min-width: 200px;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
    outline: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: white;
}

.btn-primary {
    background-color: var(--primary);
}

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

.btn-secondary {
    background-color: var(--secondary);
}

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

.btn-danger {
    background-color: var(--danger);
}

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

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.table-container {
    overflow-x: auto;
    border-radius: 0.5rem;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    background-color: rgba(15, 23, 42, 0.6);
    color: #cbd5e1;
    font-weight: 500;
    text-align: left;
    padding: 0.75rem 1rem;
}

.table th:first-child {
    border-top-left-radius: 0.5rem;
}

.table th:last-child {
    border-top-right-radius: 0.5rem;
}

.table td {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row {
    transition: background-color 0.2s ease;
}

.table-row:hover {
    background-color: rgba(51, 65, 85, 0.5);
}

.summary-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-header {
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.summary-blue {
    color: #93c5fd;
}

.summary-green {
    color: #86efac;
}

.summary-amber {
    color: #fcd34d;
}

.glow {
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(79, 70, 229, 0.5);
    }
    to {
        box-shadow: 0 0 10px rgba(79, 70, 229, 0.8);
    }
}

/* Custom radio buttons */
.radio-option {
    display: none;
}

.radio-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background-color: var(--input-bg);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:checked + .radio-label {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Custom checkboxes */
.checkbox-option {
    display: none;
}

.checkbox-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background-color: var(--input-bg);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-option:checked + .checkbox-label {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: white;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.w-full {
    width: 100%;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-medium {
    font-weight: 500;
}

.text-center {
    text-align: center;
}

.text-red-300 {
    color: #fca5a5;
}

.text-green-300 {
    color: #86efac;
}

.text-blue-300 {
    color: #93c5fd;
}

.text-slate-400 {
    color: #94a3b8;
}

.hidden {
    display: none;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pt-4 {
    padding-top: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

/* File input styling */
.file-input-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

@media (max-width: 640px) {
    .form-container {
        flex-direction: column;
    }
    
    .input-group {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .title {
        font-size: 2rem;
    }
}
/* Updated on Sun Apr  6 09:45:56 PM PKT 2025 */
