/* Global styles for GT Max application */

:root {
    --primary-color: #1a2a6c;
    --secondary-color: #4facfe;
    --accent-color: #10b981;
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --medium-text: #666;
    --light-text: #999;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f7fa;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Card styling */
.card {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

/* Button styling */
.btn {
    border-radius: 5px;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #3d9efe 0%, #00e5fe 100%);
    box-shadow: 0 4px 10px rgba(79, 172, 254, 0.3);
    transform: translateY(-2px);
}

/* Form styling */
.form-control {
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    padding: 0.6rem 0.75rem;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.15);
    border-color: #4facfe;
}

/* Tables */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #555;
}

/* Alerts */
.alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Main content container padding */
.main-content {
    min-height: calc(100vh - 240px);
    padding-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 0.4rem 1rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
