/* Custom CSS for Robots Admin with Bootstrap */

/* Gradient Background - REMOVED for Boosted Theme */
body {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Navbar Custom Gradient - REMOVED */
.bg-gradient-primary {
    background: #000000 !important;
    /* Fallback to black */
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Login Page - Robot Animation */
.robot-emoji {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.robot-emoji-large {
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Card Enhancements */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    /* Float effect removed */
}

/* Rounded Cards */
.rounded-4 {
    border-radius: 1rem !important;
}

/* Table Enhancements */
.table-hover tbody tr {
    transition: all 0.2s ease;
}

.table-hover tbody tr:hover {
    transform: scale(1.01);
}

/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    /* Float effect removed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Badge Enhancements */
.badge {
    font-weight: 600;
}

/* Alert Animations */
.alert {
    animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    margin-top: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .robot-emoji {
        font-size: 3rem;
    }

    .robot-emoji-large {
        font-size: 4rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }
}

/* Custom Scrollbar - Updated for Orange Theme */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #f16e00;
    /* Orange */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d66000;
    /* Darker Orange */
}

/* Modal Enhancements */
.modal-content {
    border: none;
    border-radius: 1rem;
}

.modal-header {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

/* Form Focus Effects */
.form-control:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* Navbar Brand Hover */
.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Table Primary Row */
.table-primary {
    background-color: rgba(102, 126, 234, 0.1) !important;
}