/* Dashboard Page Improvements */

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-controls {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dashboard_label {
    font-weight: 600;
    color: #35486E;
    margin-right: 8px;
}

.dashboard-controls select,
.dashboard-controls input {
    padding: 8px 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dashboard-controls select:focus,
.dashboard-controls input:focus {
    border-color: #35486E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(53, 72, 110, 0.1);
}

#pttrack {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
}

/* Custom scrollbar */
#pttrack::-webkit-scrollbar {
    width: 8px;
}

#pttrack::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#pttrack::-webkit-scrollbar-thumb {
    background: #35486E;
    border-radius: 4px;
}

#pttrack::-webkit-scrollbar-thumb:hover {
    background: #2a3a56;
}

.btn:not(.modal-footer .btn):not(.labelandinput .btn) {
    background: linear-gradient(135deg, #35486E 0%, #4A5F7A 100%);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 15px;
    right: 5%;
    z-index: 10;
}

.btn:not(.modal-footer .btn):not(.labelandinput .btn):hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(53, 72, 110, 0.3);
}
