/* Theme styles for consistent UI across pages */

/* Header styles */
header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header .container {
    max-width: 1200px;
}

/* Navigation links */
.nav-link {
    transition: color 0.2s ease-in-out;
}

.subscription-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.75rem;
}

.subscription-badge.free {
    background-color: #FEF3C7;
    color: #92400E;
}

.subscription-badge.active {
    background-color: #D1FAE5;
    color: #065F46;
}

/* Button styles */
.btn {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background-color: #4F46E5;
    color: white;
}

.btn-primary:hover {
    background-color: #4338CA;
}

.btn-secondary {
    background-color: white;
    color: #4F46E5;
    border: 1px solid #4F46E5;
}

.btn-secondary:hover {
    background-color: #EEF2FF;
}

.btn-danger {
    background-color: white;
    color: #DC2626;
    border: 1px solid #DC2626;
}

.btn-danger:hover {
    background-color: #FEE2E2;
}

/* Card styles */
.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Form elements */
.form-input {
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

/* Helper classes */
.hidden {
    display: none !important;
}