﻿/* Custom styles for the tracking panel */
.tracking-panel {
    padding: 20px;
}

    .tracking-panel h1 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #333;
    }

.tracking-actions {
    margin-bottom: 20px;
}

.search-container {
    margin-bottom: 20px;
}

.tracking-table {
    width: 100%;
    border-collapse: collapse;
}

    .tracking-table th {
        background-color: #f5f5f5;
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .tracking-table td {
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    .tracking-table tr:hover {
        background-color: #f9f9f9;
    }

.btn-tracking {
    margin-right: 5px;
}

.active-status {
    color: green;
    font-weight: bold;
}

/* 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.4);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.modal-header {
    margin-bottom: 20px;
}

.modal-body {
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.map-icon {
    margin-right: 5px;
}
.expired-status {
    color: #dc3545;
    font-weight: bold;
}

.expired-row {
    background-color: #f8f8f8;
    color: #777;
}
