53 lines
917 B
CSS
53 lines
917 B
CSS
/* Custom Styles */
|
|
body {
|
|
font-family: 'Tajawal', sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.vh-100 {
|
|
height: 100vh;
|
|
}
|
|
|
|
.overflow-hidden {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.overflow-auto {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#email-list-container .list-group-item {
|
|
cursor: pointer;
|
|
transition: background-color 0.2s ease-in-out;
|
|
}
|
|
|
|
#email-list-container .list-group-item:hover {
|
|
background-color: #e9ecef;
|
|
}
|
|
|
|
#email-list-container .list-group-item.active {
|
|
background-color: #0d6efd;
|
|
border-color: #0d6efd;
|
|
}
|
|
|
|
#email-list-container .list-group-item.urgent {
|
|
border-right: 4px solid #dc3545;
|
|
}
|
|
|
|
#ai-replies .list-group-item {
|
|
cursor: pointer;
|
|
transition: background-color 0.2s ease-in-out;
|
|
}
|
|
|
|
#ai-replies .list-group-item:hover {
|
|
background-color: #e9ecef;
|
|
}
|
|
|
|
.badge.bg-urgent {
|
|
background-color: #dc3545 !important;
|
|
}
|
|
|
|
.badge.bg-normal {
|
|
background-color: #0d6efd !important;
|
|
}
|