/* Minimal Custom Styles - Fomantic UI handles most styling */

body {
    background-color: #f7f7f7;
}

.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Small adjustments for better spacing */
.ui.segment {
    margin-bottom: 2rem;
}

/* Accessibility: Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;    
    white-space: nowrap;
    border-width: 0;
}

/* Accessibility: Focus visible */
*:focus-visible {
    outline: 2px solid #2185d0;
    outline-offset: 2px;
}

/* Accessibility: Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2185d0;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-main:focus {
    top: 0;
}

/* Custom button colors */
.ui.button.pink-btn {
    background-color: #ff1493 !important;
    color: white !important;
}

.ui.button.pink-btn:hover {
    background-color: #ff69b4 !important;
}

.ui.button.black-btn {
    background-color: #000 !important;
    color: white !important;
}

.ui.button.black-btn:hover {
    background-color: #333 !important;
}