/* General Settings */
body {
    font-family: Arial, sans-serif;
    background: url('your-background-image.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dashboard Container - Centered */
.dashboard-container {
    background: rgba(3, 0, 0, 0.87);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgb(238, 31, 31);
    width: 350px;
    text-align: center;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    background: rgb(238, 31, 31);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: rgba(238, 31, 31, 0.7);
}

/* Tab Content */
.tab-content {
    display: none;
    text-align: center;
}

/* Default active tab */
.tab-content.active {
    display: block;
}

/* Dropdown Styling */
select {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid rgb(238, 31, 31);
    border-radius: 4px;
    background: rgba(29, 29, 29, 0.8);
    color: white;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
}

/* Dropdown Hover & Focus */
select:hover, select:focus {
    border-color: white;
    outline: none;
    background: rgba(29, 29, 29, 0.9);
}

/* Dropdown Options */
select option {
    background: rgba(29, 29, 29, 0.9);
    color: white;
    font-size: 14px;
    padding: 10px;
}

/* Custom Hover Effect for Dropdown Options */
select option:hover {
    background: rgb(238, 31, 31);
    color: black;
}

/* Highlight Selected Option */
select option:checked {
    background: rgb(238, 31, 31);
    color: black;
}

/* Input Fields */
input {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid rgb(238, 31, 31);
    border-radius: 4px;
    background: white;
    color: black;
}

/* Action Buttons */
.action-btn {
    width: 100%;
    padding: 10px;
    background: rgb(238, 31, 31);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.action-btn:hover {
    background: rgba(238, 31, 31, 0.7);
}

/* Responsive Design */
@media (max-width: 600px) {
    .dashboard-container {
        width: 90%;
    }

}
