/* Theme-aware Card Components */
.theme-card {
    background-color: var(--card-bg);
    color: var(--text-primary);
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow), 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Theme-aware Table Components */
.theme-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.theme-table th {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
    text-align: left;
}

.theme-table td {
    color: var(--text-primary);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.theme-table tbody tr:hover {
    background-color: var(--bg-secondary);
}

/* Theme-aware Stats Card */
.stats-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
}

.stats-card-title {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.stats-card-value {
    color: var(--text-primary);
    font-size: 1.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Theme-aware Section Headers */
.section-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

/* Theme-aware Form Elements */
.theme-input {
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.theme-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px var(--accent-light);
}

.theme-select {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
} 