/**
 * JunkAway Calculator WordPress Plugin Styles
 */

.junkaway-calculator-container {
    width: 100%;
    margin: 30px 0;
    position: relative;
}

.junkaway-calculator-iframe {
    display: block;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.junkaway-error {
    padding: 20px;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    color: #856404;
    text-align: center;
    font-weight: 500;
}

/* Responsive styling */
@media (max-width: 768px) {
    .junkaway-calculator-container {
        margin: 20px -15px;
    }
    
    .junkaway-calculator-iframe {
        border-radius: 0;
    }
}

/* Loading state */
.junkaway-calculator-container.loading::before {
    content: "Calculator laden...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}
