/* ========================================
   Medicamentos - Tema 3
   ======================================== */

.alert-info {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(34, 139, 34, 0.1));
    border-left: 4px solid var(--secondary-color);
}

.alert-info i {
    color: var(--secondary-color);
}

.input-group-text {
    border-radius: 12px 0 0 12px;
}

.input-group .form-control {
    border-radius: 0 12px 12px 0;
    border: none;
    font-size: 1rem;
    padding: 0.85rem 1.25rem;
    transition: all 0.3s ease;
}

.input-group .form-control:focus {
    box-shadow: none;
    background: #fff;
}

#dynamic_content .list-group-item {
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

#dynamic_content .list-group-item:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

#dynamic_content h5 {
    font-weight: 700;
    color: var(--text-primary);
}

#dynamic_content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.pagination .page-item .page-link {
    border-radius: 10px;
    margin: 0 0.2rem;
    border: 1px solid #e5e7eb;
    color: var(--text-primary);
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.pagination .page-item .page-link:focus {
    box-shadow: none;
}

@media (max-width: 768px) {
    .input-group-text {
        border-radius: 10px 10px 0 0;
    }

    .input-group .form-control {
        border-radius: 0 0 10px 10px;
    }
}

