/* ===== BODY BACKGROUND ===== */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('C:\Users\Lenovo\Desktop\excel\360_F_491487367_ih7xEO8hZjAQtKEGf4IQeLL0AkSONoud.jpg') no-repeat center center/cover;
    min-height: 100vh;
}

/* Light overlay for readability */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.85);
    z-index: -1;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(45deg, #ff6a00, #ee0979);
    color: white;
    padding: 18px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ===== CARD BOXES ===== */
.card-box {
    border-radius: 12px;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.card-box:hover {
    transform: translateY(-5px) scale(1.02);
}

/* CARD COLORS */
.total { 
    background: linear-gradient(135deg,#0d6efd,#3a8bfd);
}

.arrived { 
    background: linear-gradient(135deg,#198754,#28c76f);
}

.pending { 
    background: linear-gradient(135deg,#dc3545,#ff6b6b);
}

/* ===== BUTTONS ===== */
button {
    border-radius: 8px !important;
    padding: 10px 18px !important;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Specific button colors */
.btn-danger {
    background: #dc3545 !important;
}

.btn-success {
    background: #198754 !important;
}

.btn-dark {
    background: #212529 !important;
}

/* ===== SEARCH INPUT ===== */
input[type="text"] {
    border-radius: 8px;
    padding: 10px;
    border: none;
    outline: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* ===== TABLE ===== */
table {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Table header */
th {
    background: #212529;
    color: white;
    padding: 12px;
    text-align: left;
}

/* Table rows */
td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

/* Hover effect */
tr:hover {
    background: #f1f1f1;
}

/* ===== STATUS BADGES ===== */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Status colors */
.badge.arrived {
    background: #28a745;
    color: white;
}

.badge.pending {
    background: #dc3545;
    color: white;
}

/* ===== ACTION BUTTONS (ICONS) ===== */
.action-btn {
    border-radius: 6px;
    padding: 6px 10px;
    margin-right: 5px;
    border: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: 0.2s;
}

.action-btn:hover {
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .card-box {
        margin-bottom: 10px;
        text-align: center;
    }

    table {
        font-size: 14px;
    }
}