/* Contenedor principal */
.db-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Títulos */
.db-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.db-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Cards */
.db-card {
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.db-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.db-card-image {
    height: 160px;
    object-fit: cover;
    width: 100%;
}

.db-card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.db-card-text {
    font-size: 0.875rem;
    color: #666;
}

/* Contenedores de scroll */
.db-scroll-area {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f7fafc;
}

.db-scroll-area::-webkit-scrollbar {
    width: 8px;
}

.db-scroll-area::-webkit-scrollbar-track {
    background: #f7fafc;
}

.db-scroll-area::-webkit-scrollbar-thumb {
    background-color: #cbd5e0;
    border-radius: 4px;
}

/* Stats box */
.db-stats-box {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.db-stats-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Badges */
.db-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #e2e8f0;
    color: #4a5568;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Inputs y Selects */
.db-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.db-search-input {
    flex-grow: 1;
}

/* Progress bar */
.db-progress {
    height: 0.5rem;
    border-radius: 0.25rem;
}

