/* General table styling */
.table {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}

/* Header styling */
.table thead {
    background-color: #f0f4f7;
    font-weight: bold;
    color: #333;
}

/* Table cells */
.table td,
.table th {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    vertical-align: middle;
}

/* Alternate row background */
.table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover effect */
.table-hover tbody tr:hover {
    background-color: #e9f5ff;
}

/* Responsive overflow */
.table-responsive {
    overflow-x: auto;
}

/* Status column coloring */
.table td:nth-child(3) {
    font-weight: 600;
    color: #0069d9;
}

/* Remarks column */
.table td:nth-child(6) {
    font-style: italic;
}

/* Duration */
.table td:last-child {
    color: #888;
}

/* Card header for timeline */
.card-header {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

/* Small text under header */
.card-header small {
    font-size: 13px;
    color: #d0e8ff;
}

/* Responsive layout fix */
@media (max-width: 768px) {
    .table th, .table td {
        font-size: 13px;
        padding: 10px;
    }

    .card-header h5 {
        font-size: 16px;
    }

    .card-header small {
        display: block;
        margin-top: 5px;
    }
}








/* Card styling */
.card {
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Card heading */
.card-body h4 {
    text-align: center;
    margin-left: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 20px;
}

/* Labels and values */
.card-body p {
    margin-left: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

/* Label bold */
.card-body p strong {
    display: inline-block;
    min-width: 140px;
    color: #555;
}

/* Link style inside card */
.card-body a {
    color: #007bff;
    text-decoration: none;
}

.card-body a:hover {
    text-decoration: underline;
}

/* Description block */
.card-body p:last-of-type {
    margin-bottom: 16px;
}

/* Release/Forward button */
.btn-warning {
    background-color: #f0ad4e;
    border-color: #eea236;
    font-size: 13px;
    padding: 6px 14px;
}

/* Forwarding info text */
.text-muted {
    font-size: 13px;
    color: #888 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body p strong {
        min-width: 100px;
    }

    .card-body h4 {
        font-size: 18px;
    }

    .btn-warning {
        font-size: 12px;
    }
}

