/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
}
.header {
    background-color: #4a76a8;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .logo-nav {
    display: flex;
    align-items: center;
}
.header .logo {
    height: 40px;
    margin-right: 15px;
}
.header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}
.header .account-section {
    display: flex;
    align-items: center;
}
.header .notification-badge {
    background-color: red;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    margin-right: 5px;
}
.main-container {
    padding: 20px;
}
.content-wrapper {
    max-width: 1400px;
    margin: auto;
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.title-section h1 {
    margin-top: 0;
    font-size: 24px;
    color: #4a76a8;
}
.info-text, .hint-text {
    font-size: 14px;
    margin-bottom: 10px;
}
.hint-text {
    color: #666;
}
.hint-text strong {
    color: #d9534f;
}
.main-layout {
    display: flex;
    gap: 20px;
}
.requests-table {
    flex-grow: 1;
}
.actions-sidebar {
    width: 280px;
    flex-shrink: 0;
}
.filter-box, .service-box, .action-buttons {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}
.filter-box .input-group {
    margin-bottom: 10px;
}
.filter-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}
.filter-box input, .filter-box select {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.filter-box button {
    width: 100%;
    padding: 10px;
    background-color: #5bc0de;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
}
.service-list {
    border: 1px solid #ccc;
    height: 150px;
    overflow-y: auto;
    padding: 5px;
    background-color: white;
}
.service-item {
    padding: 5px;
    cursor: pointer;
    font-size: 13px;
}
.service-item:hover {
    background-color: #e9e9e9;
}
.action-buttons button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.btn-priority { background-color: #4a76a8; }
.btn-carrier { background-color: #5cb85c; }
.btn-offer { background-color: #f0ad4e; }
.pagination {
    font-size: 14px;
    margin-bottom: 10px;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th, .data-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    font-size: 13px;
}
.data-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}
.data-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.data-table .status-completed {
    color: green;
}
.data-table .icon-cell {
    text-align: center;
}
.data-table .refresh-icon {
    cursor: pointer;
    width: 16px;
    height: 16px;
}