/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Prose styles for guides (admin.html, pos.html, catalogo.html) */
.prose h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.prose ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style-type: disc;
    color: #4b5563;
}

.prose ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style-type: decimal;
    color: #4b5563;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose img {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

/* Plan features (planes.html) */
.feature-check {
    color: #10b981;
}


.feature-x {
    color: #ef4444;
}

/* Custom Modal Styles */
#search-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#search-modal-backdrop.visible {
    opacity: 1;
}

#search-modal {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

#search-modal-backdrop.visible #search-modal {
    transform: scale(1);
}

#search-modal h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

#search-modal p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

#search-modal button {
    background-color: #1f2937;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    width: 100%;
}

#search-modal button:hover {
    background-color: #111827;
}