/* Beautiful Select Dropdowns */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236366f1'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

select:hover {
    border-color: #818cf8 !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

select:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    outline: none;
}

/* Beautiful select options */
select option {
    padding: 12px;
    font-weight: 500;
    background: white;
}

select option:hover {
    background: linear-gradient(to right, #f0f9ff, #e0f2fe);
}

select option:checked {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
}

/* Disabled state */
select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
}

/* Styled Content for Pages */
.styled-content {
    line-height: 1.8;
    color: #374151;
}

.styled-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #6366f1;
}

.styled-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.styled-content p {
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

.styled-content ul,
.styled-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.styled-content ul li {
    list-style-type: disc;
    padding-left: 0.5rem;
    margin-bottom: 0.75rem;
}

.styled-content ol li {
    list-style-type: decimal;
    padding-left: 0.5rem;
    margin-bottom: 0.75rem;
}

.styled-content strong {
    font-weight: 700;
    color: #111827;
}

.styled-content em {
    font-style: italic;
}

.styled-content a {
    color: #6366f1;
    text-decoration: underline;
    font-weight: 600;
}

.styled-content a:hover {
    color: #4f46e5;
}
