/* CoProxy Admin Dashboard Styles */

/* Main Layout */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
}

/* Content Sections */
.content-section {
    margin-bottom: 2rem;
}

/* Cards */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: none;
}

.card-title {
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Dashboard Stats */
.card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Tables */
.table th {
    font-weight: 600;
    color: #495057;
}

.table td {
    vertical-align: middle;
}

/* Status Badges */
.badge-paid {
    background-color: #28a745;
    color: white;
}

.badge-free {
    background-color: #007bff;
    color: white;
}

.badge-unsubscribed {
    background-color: #6c757d;
    color: white;
}

/* API Key Display */
.api-key {
    font-family: monospace;
    font-size: 0.85rem;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Chart Container */
canvas {
    max-height: 300px;
}

/* Search Box */
#user-search {
    width: 250px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card h2 {
        font-size: 2rem;
    }
    
    #user-search {
        width: 100%;
        margin-top: 1rem;
    }
    
    .float-end {
        float: none !important;
        display: block;
        margin-top: 1rem;
    }
    
    .btn-group {
        display: flex;
        margin-bottom: 1rem;
    }
    
    .btn-group .btn {
        flex: 1;
    }
}

/* Modal Styles */
.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

/* Login Form */
#login-modal .modal-dialog {
    max-width: 400px;
}