:root {
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 80px;
    --sidebar-bg: #1e3a8a;
    --sidebar-text: #ffffff;
    --sidebar-text-hover: #f0f0f0;
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e5e7eb;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition-speed: 0.3s;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #f9fafb;
    overflow-x: hidden;
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
    position: fixed;
    z-index: 100;
}

.sidebar-header {
    padding: 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
}

.user-avatar {
    font-size: 2rem;
    min-width: 40px;
}

.user-details {
    overflow: hidden;
}

.sidebar .user-name {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.user-role {
    font-size: 0.75rem;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toggle-btn {
    background: none;
    border: none;
    color: var(--sidebar-text);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-box {
    padding: 1rem;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    border-radius: 4px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--sidebar-text);
    transition: all var(--transition-speed);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-box input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    opacity: 0.7;
}

.sidebar-nav {
    flex: 1;
    padding: 0.5rem 0;
    overflow-y: auto;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin: 0.25rem 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--sidebar-text);
    text-decoration: none;
    transition: all var(--transition-speed);
    border-left: 3px solid transparent;
    gap: 0.75rem;
}

.sidebar-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--sidebar-text-hover);
}

.sidebar-nav a i {
    font-size: 1.1rem;
    min-width: 24px;
    text-align: center;
}

.sidebar-nav a span {
    white-space: nowrap;
}

.sidebar-nav li.active a {
    background-color: rgba(255, 255, 255, 0.2);
    border-left-color: var(--sidebar-text);
    font-weight: 500;
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--sidebar-text);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all var(--transition-speed);
}

.logout-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--sidebar-text-hover);
}

/* Collapsed Sidebar */
.sidebar.collapsed {
    width: var(--sidebar-collapsed-width);
}

.sidebar.collapsed .user-details,
.sidebar.collapsed .search-box input,
.sidebar.collapsed .sidebar-nav a span,
.sidebar.collapsed .logout-btn span {
    display: none;
}

.sidebar.collapsed .toggle-btn i {
    transform: rotate(180deg);
}

.sidebar.collapsed .search-box {
    padding: 1rem 0.5rem;
}

.sidebar.collapsed .search-box i {
    left: 0.75rem;
}

.sidebar.collapsed .sidebar-nav a {
    justify-content: center;
    padding: 0.75rem 0.5rem;
}

.sidebar.collapsed .sidebar-footer {
    display: flex;
    justify-content: center;
}

.sidebar.collapsed .user-info {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar.collapsed .user-avatar {
    margin: 0;
    font-size: 2.5rem;
}

.sidebar.collapsed .toggle-btn {
    position: absolute;
    top: 1rem;
    right: 0.5rem;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: margin-left var(--transition-speed);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sidebar.collapsed ~ .main-content {
    margin-left: var(--sidebar-collapsed-width);
}

.main-header {
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--card-shadow);
    z-index: 10;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.org-info h1 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 0.1rem;
}

.org-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.header-right {
    display: flex;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
}

.header-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn:hover {
    background-color: #f3f4f6;
    color: var(--primary-color);
}

/* Content Area */
.content-area {
    flex: 1;
    padding: 1.5rem;
    background-color: #f9fafb;
}

.content-header {
    margin-bottom: 1.5rem;
}

.content-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.breadcrumb {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Tracking Specific Styles */
.tracking-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Tracking Overview */
.tracking-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.overview-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s;
}

.overview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overview-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.overview-card:nth-child(1) .overview-icon {
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
}

.overview-card:nth-child(2) .overview-icon {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.overview-card:nth-child(3) .overview-icon {
    background: linear-gradient(135deg, var(--warning-color), #d97706);
}

.overview-card:nth-child(4) .overview-icon {
    background: linear-gradient(135deg, var(--info-color), #1e40af);
}

.overview-info h3 {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overview-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Map Section */
.map-section {
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.section-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.map-controls {
    display: flex;
    gap: 1rem;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.control-btn:hover {
    background: #f9fafb;
    border-color: var(--primary-color);
}

.map-container {
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
    max-width: 400px;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--border-color);
}

.map-placeholder h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.map-placeholder p {
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.load-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.load-map-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Tracking Details */
.tracking-details {
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.details-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.filter-controls {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.tracking-items {
    max-height: 500px;
    overflow-y: auto;
}

.tracking-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s;
    cursor: pointer;
}

.tracking-item:hover {
    background-color: #f9fafb;
}

.tracking-item.active {
    background-color: #f0f9ff;
    border-left: 4px solid var(--primary-color);
}

.tracking-item.alert {
    background-color: #fef3c7;
    border-left: 4px solid var(--warning-color);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.item-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.active {
    background: #dcfce7;
    color: #166534;
}

.status-badge.inactive {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.alert {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.completed {
    background: #dbeafe;
    color: green;
}

.item-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    font-weight: 500;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Tracking History */
.tracking-history {
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--success-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.export-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.history-table-container {
    overflow-x: auto;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table th {
    background: #f9fafb;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.history-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.history-table tbody tr:hover {
    background-color: #f9fafb;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sidebar {
        width: var(--sidebar-collapsed-width);
    }

    .sidebar .user-details,
    .sidebar .search-box input,
    .sidebar .sidebar-nav a span,
    .sidebar .logout-btn span {
        display: none;
    }

    .sidebar .toggle-btn i {
        transform: rotate(180deg);
    }

    .sidebar .search-box {
        padding: 1rem 0.5rem;
    }

    .sidebar .search-box i {
        left: 0.75rem;
    }

    .sidebar .sidebar-nav a {
        justify-content: center;
        padding: 0.75rem 0.5rem;
    }

    .sidebar .sidebar-footer {
        display: flex;
        justify-content: center;
    }

    .main-content {
        margin-left: var(--sidebar-collapsed-width);
    }
}

@media (max-width: 768px) {
    .tracking-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .map-controls {
        width: 100%;
        justify-content: space-between;
    }

    .details-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .filter-controls {
        width: 100%;
        justify-content: space-between;
    }

    .item-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .item-actions {
        width: 100%;
        justify-content: space-between;
    }

    .history-table th,
    .history-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--border-color);
}

.empty-state h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.empty-state p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* All Requests Section Styles */
.all-requests-section {
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.search-filter-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-filter-container .search-box {
    position: relative;
    padding: 0;
}

.search-filter-container .search-box input {
    width: 250px;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: white;
    color: var(--text-color);
    font-size: 0.875rem;
}

.search-filter-container .search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-filter-container .search-box i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.875rem;
}

.requests-list {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
}

/* Request Items */
.request-item {
    background-color: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
}

.request-item:hover {
    background-color: white;
    box-shadow: var(--card-shadow);
    transform: translateY(-1px);
}

.request-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.request-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.request-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.request-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.meta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: modal-fade-in 0.3s ease;
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modal-content-fade-in 0.3s ease;
}

@keyframes modal-content-fade-in {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed);
}

.close-btn:hover {
    background-color: var(--border-color);
    color: var(--text-color);
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

#modal-details {
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: var(--text-color);
}

.detail-value {
    color: var(--text-light);
}

.modal-actions {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.modal-actions h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-decoration: none;
}

.approve-btn {
    background-color: var(--success-color);
    color: white;
}

.approve-btn:hover {
    background-color: #059669;
}

.reject-btn {
    background-color: var(--danger-color);
    color: white;
}

.reject-btn:hover {
    background-color: #dc2626;
}

.forward-btn {
    background-color: var(--info-color);
    color: white;
}

.forward-btn:hover {
    background-color: #2563eb;
} 

/* Location tracking styles */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #f0f9ff;
    color: #0369a1;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.location-badge i {
    font-size: 0.75rem;
}

/* Location tracking modal styles */
.tracking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-section h4 {
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.current-location {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.location-detail:last-child {
    margin-bottom: 0;
}

.location-detail i {
    color: #3b82f6;
    width: 16px;
    text-align: center;
}

.location-detail span {
    color: #374151;
}

.no-location,
.no-history {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

/* Location timeline styles */
.location-timeline {
    position: relative;
    padding-left: 2rem;
}

.location-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e5e7eb;
}

.timeline-content {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.timeline-header h5 {
    margin: 0;
    color: #1f2937;
    font-weight: 600;
}

.timeline-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.timeline-details p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
    color: #374151;
}

.timeline-details strong {
    color: #1f2937;
}

/* Modal enhancements for location tracking */
.modal-content.large {
    max-width: 800px;
    width: 95%;
}

/* Location tracking button styles */
.location-track-btn {
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.location-track-btn:hover {
    background: #0284c7;
}

/* Responsive design for location tracking */
@media (max-width: 768px) {
    .location-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1rem;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .location-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .location-badge {
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

/* Request actions styles */
.request-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.request-actions .action-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.request-actions .action-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.request-actions .action-btn i {
    font-size: 0.875rem;
} 