/* Floating Widget Styles */
.das-floating-widget {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #333;
    display: flex;
    flex-direction: column;
    padding: 5px;
    border-radius: 5px 0 0 5px;
    z-index: 100000;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
}

.das-floating-widget button {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
    margin: 3px 0;
    padding: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

.das-floating-widget button:hover {
    background: #005a9c;
    color: #fff;
}

/* High Contrast Mode (4.5:1 ratio compliance) */
body.das-high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

body.das-high-contrast a {
    color: #ffff00 !important;
    text-decoration: underline !important;
}

body.das-high-contrast h1, body.das-high-contrast h2, 
body.das-high-contrast h3, body.das-high-contrast h4 {
    color: #00ff00 !important;
}

/* Font Sizing */
body.das-font-large { font-size: 1.25em !important; }
body.das-font-small { font-size: 0.85em !important; }

/* File Meta Styling */
.das-file-meta {
    font-size: 0.9em;
    font-style: italic;
    color: #666;
    margin-left: 5px;
}
