/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body {
    font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.125rem;
    line-height: 1.6;
}

.btn-primary {
    background-color: #4f46e5;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-1px);
}

/* Focus styles */
.focus\:ring-indigo-500:focus {
    --tw-ring-color: #4f46e5;
    box-shadow: 0 0 0 1px #4f46e5;
    outline: none;
}

.focus\:border-indigo-500:focus {
    border-color: #4f46e5;
    outline: none;
}
