/* Szuflada ofert */
.m-offers-area {
    display: none;
    background: #fff;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

/* Tabela Ofert */
.m-offers-table tr:hover {
    background: #f9fbfc;
}

/* Formularz Zgłoszenia */
.m-request-form-container select:focus, 
.m-request-form-container textarea:focus {
    border-color: #a259ff !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(162, 89, 255, 0.1);
}

.m-btn-base.btn-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(162, 89, 255, 0.3);
}

.success-msg {
    color: #2e7d32;
    background: #e8f5e9;
    padding: 12px;
    border-radius: 8px;
    display: inline-block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}