/* styles.css */

body {
    background-color: #f3f4f6;
    color: #111827;
}

/* Header Styles */
.bg-blue-600 {
    background-color: #2563eb;
    color: white;
}

.text-white {
    color: white;
}

.p-4 {
    padding: 1rem;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.font-semibold {
    font-weight: 600;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Card Container */
.max-w-md {
    max-width: 28rem;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-white {
    background-color: white;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.p-6 {
    padding: 1.5rem;
}

/* Card Item Styles */
.border-t {
    border-top-width: 1px;
}

.mt-6 {
    margin-top: 1.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.max-w-\[70\%\] {
    max-width: 70%;
}

.font-bold {
    font-weight: 700;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-gray-700 {
    color: #374151;
}

/* New Visual Badge */
.bg-blue-500 {
    background-color: #3b82f6;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-center {
    text-align: center;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.min-w-\[79px\] {
    min-width: 79px;
}

/* Ver detalles Link */
.text-blue-500 {
    color: #3b82f6;
}

.hover\:underline:hover {
    text-decoration: underline;
}

/* Download Button */
.fixed {
    position: fixed;
}

.bottom-4 {
    bottom: 1rem;
}

.right-4 {
    right: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .md\:max-w-2xl {
        max-width: 42rem;
    }

    .md\:p-8 {
        padding: 2rem;
    }

    .md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .lg\:max-w-4xl {
        max-width: 56rem;
    }

    .lg\:p-10 {
        padding: 2.5rem;
    }
}
