/* Custom styles for Sky Command Simulator Portal */

:root {
    --primary-color: #212529;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 1.5rem;
    vertical-align: middle;
}

.navbar-logo {
    height: 32px;
    width: auto;
    margin-right: 12px;
}

.card {
    border: none;
    border-radius: 0.5rem;
}

.card-body {
    border-radius: 0.5rem;
}

.btn-lg {
    border-radius: 0.5rem;
    font-weight: 500;
}

.alert {
    border-radius: 0.5rem;
}

.footer {
    margin-top: auto;
}

/* Animation for cards */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Loading state for forms */
form button[type="submit"] {
    position: relative;
    transition: padding-right 0.3s;
}

form button[type="submit"]:active {
    padding-right: 2.5rem;
}

/* Success animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert {
    animation: fadeIn 0.3s ease-in-out;
}

