/* Dolo Generated Styles - Accessibility First */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

#app {
    min-height: 100vh;
    padding: 1rem;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



/* Dolo UI Components */
.dolo-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.dolo-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dolo-button {
    background: #0066cc;
    color: white;
    border: 2px solid #0066cc;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    min-height: 44px; /* WCAG AA minimum touch target */
    min-width: 44px;
}

.dolo-button:hover {
    background: #0052a3;
    border-color: #0052a3;
}

.dolo-button:active {
    transform: translateY(1px);
}

.dolo-button:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.dolo-input {
    padding: 0.75rem;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    min-height: 44px; /* WCAG AA minimum touch target */
}

.dolo-input:hover {
    border-color: #999;
}

.dolo-input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.dolo-input-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: block;
    color: #333;
}

.dolo-section {
    margin: 1.5rem 0;
}

.dolo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
}

.dolo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dolo-list li {
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
}

.dolo-text {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.dolo-heading {
    margin: 1.5rem 0 1rem 0;
    color: #222;
    font-weight: 600;
    line-height: 1.2;
}

.dolo-heading:first-child {
    margin-top: 0;
}

.dolo-conditional {
    margin: 0.5rem 0;
}

.dolo-img {
    max-width: 100%;
    height: auto;
    border: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .dolo-button {
        border-width: 3px;
    }
    
    .dolo-input {
        border-width: 3px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #e5e5e5;
    }
    
    .dolo-heading {
        color: #fff;
    }
    
    .dolo-input {
        background: #2d2d2d;
        border-color: #555;
        color: #e5e5e5;
    }
    
    .dolo-input:focus {
        border-color: #66b3ff;
        box-shadow: 0 0 0 3px rgba(102, 179, 255, 0.2);
    }
    
    .dolo-list li {
        border-bottom-color: #444;
    }
}


