/*
 * 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.
 */


/* Import Shepherd.js CSS from CDN */
@import url('https://cdn.jsdelivr.net/npm/shepherd.js@13.0.3/dist/css/shepherd.css');

/* Custom Shepherd styling */
.shepherd-element {
    max-width: 24rem;
}

.shepherd-content {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
    border: 1px solid #e5e7eb;
}

.shepherd-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: transparent;
}

.shepherd-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.shepherd-text {
    padding: 1rem 1.5rem;
    color: #374151;
}

.shepherd-footer {
    padding: 1rem 1.5rem;
    background-color: #f9fafb;
    border-radius: 0 0 0.5rem 0.5rem;
    display: flex;
    justify-content: space-between;
}

.shepherd-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.shepherd-button-primary {
    background-color: #2563eb;
    color: #fff;
}

.shepherd-button-primary:hover {
    background-color: #1d4ed8;
}

.shepherd-button-secondary {
    background-color: #e5e7eb;
    color: #111827;
}

.shepherd-button-secondary:hover {
    background-color: #d1d5db;
}

.shepherd-cancel-icon {
    color: #9ca3af;
}

.shepherd-cancel-icon:hover {
    color: #4b5563;
}

/* Hide Spina Pro upgrade link permanently */
a[href="https://spinacms.com/pro"] {
    display: none !important;
}