/* Reset and Base Styles */
.belegal-home,
.belegal-login,
.belegal-faq,
.belegal-planes,
.belegal-dashboard {
    font-family: "Times New Roman", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.belegal-header {
    background: #000;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.belegal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.belegal-logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.belegal-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.belegal-menu a {
    color: #fff;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.belegal-menu a:hover {
    color: #ccc;
}

/* Button Styles */
.belegal-login-btn,
.belegal-btn,
.belegal-plan-btn,
.belegal-query-btn {
    background: #333;
    color: white;
    padding: 0.75rem 1.5rem;
    border: 1px solid #333;
    border-radius: 5px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.belegal-btn.primary,
.belegal-login-btn {
    background: transparent;
    color: white;
    border-color: #fff;
}

.belegal-btn.primary:hover,
.belegal-login-btn:hover {
    background: #fff;
    color: #000;
}

.belegal-btn.secondary {
    background: transparent;
    color: #333;
    border-color: #333;
}

.belegal-btn.secondary:hover {
    background: #333;
    color: white;
}

/* Plans Styles */
.belegal-planes {
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.belegal-planes h1 {
    text-align: center;
    font-size: 4.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 3rem;
}

.belegal-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.belegal-plan-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.belegal-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.belegal-plan-card.featured {
    border: 3px solid #333;
    transform: scale(1.05);
}

.belegal-plan-card.featured::before {
    content: "Más Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.belegal-plan-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.belegal-plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0;
}

.belegal-plan-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #555;
    line-height: 1.5;
}

.belegal-plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.belegal-billing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.belegal-toggle-label {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.belegal-toggle-label:has(input:checked) {
    background: #333;
    color: white;
}

.belegal-toggle-label input {
    display: none;
}

.savings {
    background: #28a745;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.7rem;
}

.belegal-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.belegal-plan-btn {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
}

/* Student Section */
.belegal-student-section {
    text-align: center;
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 3rem 2rem;
}

.belegal-student-btn {
    background: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.belegal-student-btn:hover {
    background: #0056b3;
}

/* Modal Styles */
.belegal-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.belegal-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.belegal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.belegal-close:hover {
    color: black;
}

.belegal-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Dashboard Styles */
.belegal-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.belegal-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.belegal-dashboard h1 {
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.belegal-logout-btn {
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.belegal-logout-btn:hover {
    background: #c82333;
}

.belegal-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.belegal-dashboard-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
}

.belegal-dashboard-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.status-active {
    color: #28a745;
    font-weight: bold;
}

.status-trial {
    color: #ffc107;
    font-weight: bold;
}

.status-expired {
    color: #dc3545;
    font-weight: bold;
}

.belegal-progress-bar {
    background: #e9ecef;
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.belegal-progress-fill {
    background: linear-gradient(90deg, #28a745, #20c997);
    height: 100%;
    transition: width 0.3s ease;
}

/* Query Section */
.belegal-query-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.belegal-query-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    min-height: 120px;
    resize: vertical;
    margin-bottom: 1rem;
}

.belegal-query-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.belegal-query-result {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.belegal-query-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

/* Recent Queries */
.belegal-recent-queries {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.belegal-query-history-item {
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.belegal-query-history-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.query-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.belegal-toggle-query {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Order Items */
.belegal-order-item {
    border-left: 3px solid #28a745;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

/* Notices */
.belegal-notice {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.belegal-notice.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

/* ========================= HOME PAGE STYLES ========================= */

/* Reset específico para el home */
.belegal-home * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.belegal-home {
    font-family: "Times New Roman", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header para Home */
.belegal-home .header {
    background: #000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
}

.belegal-home .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.belegal-home .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.belegal-home .logo img {
    height: 50px;
}

.belegal-home .nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.belegal-home .nav a {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.belegal-home .nav a:hover, 
.belegal-home .nav a.active {
    color: #ccc;
}

.belegal-home .login-btn {
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border: 1px solid #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.belegal-home .login-btn:hover {
    background: #fff;
    color: #000;
}

/* Mobile Menu */
.belegal-home .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.belegal-home .hero {
    background: #f5f5f5;
    color: #333;
    padding: 6rem 0;
    text-align: center;
}

.belegal-home .hero h1 {
    font-family: "Times New Roman", sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #333;
}

.belegal-home .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

.belegal-home .cta-btn {
    background: #333;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.belegal-home .cta-btn:hover {
    background: #555;
}

/* Video Section */
.belegal-home .video-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.belegal-home .video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.belegal-home .video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #333, #555);
    color: white;
    font-size: 1.2rem;
}

/* Tools Section */
.belegal-home .tools-section {
    padding: 6rem 0;
}

.belegal-home .tools-header {
    text-align: center;
    margin-bottom: 3rem;
}

.belegal-home .tools-header h2 {
    color: #007bff;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.belegal-home .tools-header h3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.belegal-home .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.belegal-home .tool-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    color: #333;
}

.belegal-home .tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.belegal-home .tool-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Partnership Section */
.belegal-home .partnership {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.belegal-home .partnership h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

/* Testimonials */
.belegal-home .testimonials {
    padding: 6rem 0;
    background: #fff;
}

.belegal-home .testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.belegal-home .testimonial-image {
    width: 100%;
    border-radius: 10px;
}

.belegal-home .testimonial-content {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
}

.belegal-home .testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #555;
}

.belegal-home .testimonial-author {
    font-weight: 600;
    color: #333;
}

.belegal-home .testimonial-title {
    color: #007bff;
    font-size: 0.9rem;
}

/* Alliance Section */
.belegal-home .alliance {
    padding: 4rem 0;
    text-align: center;
    background: #f8f9fa;
}

.belegal-home .alliance h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.belegal-home .partners-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.belegal-home .partner-logo {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.belegal-home .partner-logo:hover {
    opacity: 1;
}

/* Footer */
.belegal-home .footer {
    background: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.belegal-home .tool-card {
    animation: fadeInUp 0.6s ease-out;
}

.belegal-home .tool-card:nth-child(2) { animation-delay: 0.1s; }
.belegal-home .tool-card:nth-child(3) { animation-delay: 0.2s; }
.belegal-home .tool-card:nth-child(4) { animation-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 768px) {
    .belegal-dashboard h1 {
        font-size: 2rem;
    }
    
    .belegal-dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .belegal-plans-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .belegal-plan-card.featured {
        transform: none;
    }
    
    .belegal-billing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .belegal-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .belegal-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .belegal-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .query-preview {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Home responsive */
    .belegal-home .nav {
        display: none;
    }

    .belegal-home .mobile-menu-toggle {
        display: block;
    }

    .belegal-home .hero h1 {
        font-size: 2rem;
    }

    .belegal-home .hero p {
        font-size: 1rem;
    }

    .belegal-home .testimonials-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .belegal-home .tools-grid {
        grid-template-columns: 1fr;
    }

    .belegal-home .container {
        padding: 0 1rem;
    }
}

/* Loading States */
.btn-loading {
    display: none;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================= LOGIN/REGISTER PAGE STYLES ========================= */

.belegal-login-page {
    font-family: "Times New Roman", sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content del Login/Register */
.belegal-login-page .main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.belegal-login-page .auth-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    position: relative;
    min-height: 500px;
}

.belegal-login-page .form-container {
    width: 100%;
}

.belegal-login-page .login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.belegal-login-page .login-header h1 {
    font-family: "Times New Roman", sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.5rem;
}

.belegal-login-page .login-header p {
    color: #666;
    font-size: 1rem;
}

.belegal-login-page .form-group {
    margin-bottom: 1.5rem;
}

.belegal-login-page .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.belegal-login-page .form-group input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: "Times New Roman", sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.belegal-login-page .form-group input:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.belegal-login-page .form-group input.error {
    border-color: #dc3545;
}

.belegal-login-page .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.belegal-login-page .form-options {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.belegal-login-page .remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.belegal-login-page .remember-me input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.belegal-login-page .remember-me label {
    margin: 0;
    font-weight: normal;
}

.belegal-login-page .forgot-password {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.belegal-login-page .forgot-password:hover {
    color: #333;
}

.belegal-login-page .auth-btn {
    width: 100%;
    background: #333;
    color: #fff;
    padding: 0.875rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: "Times New Roman", sans-serif;
}

.belegal-login-page .auth-btn:hover {
    background: #555;
}

.belegal-login-page .auth-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.belegal-login-page .divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    color: #666;
}

.belegal-login-page .divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
}

.belegal-login-page .divider span {
    background: #fff;
    padding: 0 1rem;
}

.belegal-login-page .register-link {
    text-align: center;
    margin-top: 2rem;
}

.belegal-login-page .register-link a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.belegal-login-page .register-link a:hover {
    text-decoration: underline;
}

/* Success/Error Messages para login/register */
.belegal-login-page .alert {
    padding: 0.875rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
    position: relative;
    z-index: 10;
}

.belegal-login-page .alert.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.belegal-login-page .alert.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Loading Animation para login/register */
.belegal-login-page .btn-loading {
    display: none;
}

.belegal-login-page .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Animaciones de transición */
.belegal-login-page .form-container {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.belegal-login-page .form-container.fade-out {
    opacity: 0;
}

/* Mejoras específicas para el formulario de registro */
.belegal-login-page #register-container .form-options {
    justify-content: flex-start;
}

.belegal-login-page #register-container .remember-me {
    align-items: flex-start;
}

.belegal-login-page #register-container .remember-me label {
    line-height: 1.4;
    font-size: 0.9rem;
}

/* Mobile Responsiveness para login/register */
@media (max-width: 768px) {
    .belegal-login-page .auth-container {
        margin: 1rem;
        padding: 2rem;
        min-height: auto;
    }

    .belegal-login-page .login-header h1 {
        font-size: 2rem;
    }

    .belegal-login-page .main-content {
        padding: 2rem 1rem;
    }

    .belegal-login-page .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .belegal-login-page .remember-me {
        align-items: flex-start;
    }

    .belegal-login-page .forgot-password {
        align-self: flex-end;
    }
}

/* Mejoras adicionales para UX */
.belegal-login-page input:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1), 0 2px 8px rgba(0,0,0,0.1);
}

.belegal-login-page .auth-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.belegal-login-page .register-link a:hover {
    color: #555;
}

/* Loading spinner */
.belegal-login-page .btn-loading::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}