#main-title {
    padding: 20px;
    font-weight: bold;
}

#select-platform {
    margin-left: 20px;
    padding: 0px;
    font-weight: bold;
    max-width: 300px;
}

.Select-placeholder{
    color: rgb(42, 63, 95);
}

.Select-control {
    border-radius: 2px;
    border: 1px solid #dbdbdb;
}

#date-range-picker {
    max-width: 270px;
}

.DateInput { 
    height: inherit;
    width:110px;
    color: rgb(42, 63, 95); 
}

.DateInput_input {
    font-size: inherit;
    font-weight: 700;
    color: rgb(42, 63, 95); 
    line-height: 34px;
    padding: 0px 10px;
    text-align: center;
    border: 0px;
}

.DateRangePickerInput_arrow_svg {
    fill: rgb(42, 63, 95); 
}

.modebar{
    display: none !important;
}
/* Login page styles */
.login-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.login-logo {
    transition: all 0.3s ease;
}

.login-logo:hover {
    transform: scale(1.05);
}

.login-title {
    background: linear-gradient(135deg, #2a3f5f 0%, #4a6fa5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.login-input {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    padding: 12px 15px;
}

.login-input:focus {
    border-color: #2a3f5f;
    box-shadow: 0 0 0 0.2rem rgba(42, 63, 95, 0.25);
    transform: translateY(-2px);
}

.login-button {
    background: linear-gradient(135deg, #2a3f5f 0%, #4a6fa5 100%);
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 63, 95, 0.3);
}

.login-button:active {
    transform: translateY(0);
}

.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-button:hover::before {
    left: 100%;
}

.login-alert {
    border-radius: 10px;
    border: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Form group spacing */
.form-group {
    margin-bottom: 1.5rem;
}

/* Label styling */
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

/* Placeholder styling */
.form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-card {
        margin: 20px;
        border-radius: 15px;
    }

    .login-logo {
        width: 150px !important;
    }
}