/* Basic page styling */
body {
    background-color: #f8f9fa;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* Card shadow & rounded corners */
.card {
    border-radius: 10px;
}

/* Buttons full width inside tables */
table .btn {
    padding: 6px 10px;
}

/* Table improvements */
.table th {
    background-color: #f2f2f2;
    font-weight: 600;
}

.table td, 
.table th {
    vertical-align: middle;
}

/* Loading text style */
.loading-text {
    color: #777;
    font-style: italic;
}

/* Improve form control look */
.form-control {
    border-radius: 8px;
}

/* Action button spacing */
.btn + .btn {
    margin-top: 5px;
}

/* Centered placeholder loading */
#activeRequests div,
#detailResult div {
    text-align: center;
}

/* Mobile optimizations */
@media (max-width: 480px) {
    h3 {
        font-size: 1.4rem;
    }

    .card {
        margin-top: 20px;
    }

    .table {
        font-size: 0.85rem;
    }
}
