﻿/* General Styling for DevExpress */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9; /* Light gray background */
    color: #333333; /* Darker text for readability */
    margin: 0;
    padding: 0;
}

/* Grid Styling */
.dx-datagrid {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dx-datagrid-header-panel {
    background-color: #1976d2; /* Custom header background color */
    color: #ffffff;
    font-weight: bold;
}

.dx-datagrid-rowsview .dx-row {
    border-bottom: 1px solid #e0e0e0;
}

    .dx-datagrid-rowsview .dx-row:hover {
        background-color: #f1f8ff; /* Highlight row on hover */
    }

.dx-datagrid-rowsview .dx-data-row .dx-cell {
    padding: 10px 15px;
}

/* Button Styling */
.dx-button {
    background-color: #00796b; /* Teal */
    color: #ffffff;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
}

    .dx-button:hover {
        background-color: #004d40; /* Darker teal on hover */
    }

/* Tabs Styling */
.dx-tabpanel {
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
}

.dx-tabs .dx-tab {
    background-color: #f0f0f0;
    border-radius: 8px;
    margin: 5px;
    padding: 10px 15px;
}

.dx-tabs .dx-tab-selected {
    background-color: #1976d2;
    color: #ffffff;
    font-weight: bold;
}

/* Form Styling */
.dx-form {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .dx-form .dx-field {
        margin-bottom: 15px;
    }

    .dx-form .dx-field-label {
        color: #333333;
        font-weight: 600;
    }

    .dx-form .dx-field-value {
        border: 1px solid #cccccc;
        border-radius: 5px;
        padding: 8px 12px;
    }

/* Popup Styling */
.dx-popup-content {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.dx-popup-title {
    background-color: #1976d2;
    color: #ffffff;
    font-weight: bold;
}

/* Scheduler Styling */
.dx-scheduler-work-space {
    background-color: #f0f8ff; /* Light blue */
}

.dx-scheduler-header-panel {
    background-color: #1976d2;
    color: #ffffff;
}

.dx-scheduler-cell-sizes-vertical .dx-scheduler-time-panel-cell {
    color: #555555;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

p {
    line-height: 1.6;
    margin-bottom: 1em;
}
