/* Custom styles for the application */

/* Base utility classes */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Custom button styles */
.btn-primary-custom {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary-custom:hover {
    background-color: #1d4ed8;
}

.btn-secondary-custom {
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-secondary-custom:hover {
    background-color: #e5e7eb;
}

/* Form styling */
.form-input-custom {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.form-input-custom:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Card styling */
.card-custom {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}

/* Dashboard specific styles */
.dashboard-stat {
    text-align: center;
    padding: 1rem;
}

.dashboard-stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
}

.dashboard-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Responsive utilities */
@media (max-width: 640px) {
    .container-custom {
        padding: 0 0.5rem;
    }

    .card-custom {
        padding: 1rem;
    }
}