/**
 * Image Download Buttons Plugin Styles
 */

/* Download button wrapper */
.idb-download-wrapper {
    margin-top: 8px;
    margin-bottom: 16px;
    text-align: left;
}

/* Download button styling */
.idb-download-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #4FC3F7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Hover state */
.idb-download-button:hover {
    background-color: #29B6F6;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.3);
}

/* Focus state for accessibility */
.idb-download-button:focus {
    outline: 2px solid #4FC3F7;
    outline-offset: 2px;
    background-color: #29B6F6;
    color: #ffffff;
    text-decoration: none;
}

/* Active state */
.idb-download-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(79, 195, 247, 0.3);
}

/* Download icon */
.idb-download-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Button text */
.idb-button-text {
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .idb-download-button {
        font-size: 13px;
        padding: 7px 14px;
    }
    
    .idb-download-icon {
        width: 14px;
        height: 14px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .idb-download-button {
        border: 2px solid #ffffff;
    }
    
    .idb-download-button:hover,
    .idb-download-button:focus {
        border-color: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .idb-download-button {
        transition: none;
    }
    
    .idb-download-button:hover {
        transform: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .idb-download-button {
        background-color: #4FC3F7;
        color: #000000;
    }
    
    .idb-download-button:hover {
        background-color: #29B6F6;
        color: #000000;
    }
    
    .idb-download-button:focus {
        outline-color: #4FC3F7;
        background-color: #29B6F6;
        color: #000000;
    }
}

/* Ensure buttons don't interfere with image galleries */
.gallery .idb-download-wrapper {
    margin-top: 4px;
    margin-bottom: 8px;
}

/* WordPress editor compatibility */
.wp-block-image .idb-download-wrapper {
    margin-top: 8px;
}

/* Gutenberg block compatibility */
.wp-block-gallery .idb-download-wrapper {
    margin-top: 4px;
    margin-bottom: 8px;
}

/* Ensure proper spacing in different contexts */
figure .idb-download-wrapper {
    margin-top: 8px;
}

/* RTL language support */
.rtl .idb-download-wrapper {
    text-align: right;
}

.rtl .idb-download-button {
    direction: rtl;
}
