/* Main styles for API Portal */

/* Import theme styles */
@import url('theme.css');

/* General styles */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

/* Custom styles for cards */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* API card styles */
.api-card .card-header {
    font-weight: bold;
}

.api-card .badge {
    font-size: 0.8rem;
}

/* Dashboard stats */
.stats-card {
    text-align: center;
    padding: 1.5rem;
}

.stats-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--sidebar-active);
}

.stats-card h3 {
    font-size: 2rem;
    font-weight: bold;
}

/* Form styles */
.form-control:focus {
    border-color: var(--sidebar-active);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Dropdown theme switcher active item */
.dropdown-item.active {
    background-color: var(--sidebar-active);
    color: white;
}