/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #007bff;
}

.navbar .navbar-brand, .navbar .nav-link {
    color: #fff !important;
}

.navbar .nav-link:hover {
    color: #d4d4d4 !important;
}

.container {
    margin-top: 20px;
}

/* Form Styles */
form {
    
}

form .form-label {
    font-weight: bold;
}

form .btn {
    width: 100%;
}

/* Flash Messages */
.alert {
    margin-top: 10px;
}

/* Footer */
footer {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.language-dropdown {
    font-size: 1rem; /* Bigger font size */
    background-color: #007bff; /* Blue background to match the navbar */
    color: white; /* White text */
    border: 1px solid #0056b3; /* Darker blue border */
    border-radius: 5px; /* Rounded corners */
    padding: 5px 10px; /* Adjust padding for better spacing */
    appearance: none; /* Remove default browser styling */
    -webkit-appearance: none; /* Remove default styling for WebKit browsers */
    -moz-appearance: none; /* Remove default styling for Firefox */
    outline: none; /* Remove dotted lines when focused */
}

.language-dropdown:focus {
    outline: none; /* Ensure no dotted lines appear on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Optional: Add a subtle blue glow on focus */
}

.language-dropdown option {
    background-color: #007bff; /* Blue background for dropdown options */
    color: white; /* White text for dropdown options */
    font-size: 1rem; /* Match the font size of the dropdown */
}

.btn-3d {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-3d:active {
    transform: translateY(2px); /* Simulates a "pressed" effect */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Reduce shadow when clicked */
}

.btn-danger {
    background-color: #dc3545;
    box-shadow: 0 4px 6px rgba(220, 53, 69, 0.4);
}

.btn-danger:hover {
    background-color: #c82333;
}

.btn-warning {
    background-color: #ffc107;
    color: black;
    box-shadow: 0 4px 6px rgba(255, 193, 7, 0.4);
}

.btn-warning:hover {
    background-color: #e0a800;
}

.btn-primary {
    background-color: #007bff;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d;
    box-shadow: 0 4px 6px rgba(108, 117, 125, 0.4);
}

.btn-secondary:hover {
    background-color: #5a6268;
}