/* Buttons */
.btn-administrar {
    background: var(--primary-color);
    color: white !important;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 118, 206, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-administrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 118, 206, 0.4);
    background: var(--secondary-color);
    color: white !important;
}

.btn-primary-custom {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 118, 206, 0.3);
    background: var(--secondary-color);
    color: white;
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 118, 206, 0.3);
    background: var(--primary-color);
    color: white;
}

/* Cards */
.card-feature {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
}

.card-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.125);
}

.card-feature img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    height: 200px;
    object-fit: cover;
}

/* Badge */
.badge-featured {
    background: var(--accent-color);
    color: white;
}

/* Approval Status Badges */
.badge-pending {
    background: #ffc107;
    color: #000;
}

.badge-approved {
    background: #28a745;
    color: #fff;
}

.badge-rejected {
    background: #dc3545;
    color: #fff;
}

/* Notification Bell */
.notification-bell {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
}

.notification-bell i {
    font-size: 1.2rem;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
}
