/* DOREE GLAM Invoice Plugin Styles */

.doree-invoice-button {
    background: #D4AF37;
    color: #2c2c2c;
    border: 1px solid #D4AF37;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
    transition: all 0.3s ease;
}

.doree-invoice-button:hover {
    background: #c49d2e;
    border-color: #c49d2e;
}

.doree-invoice-container {
    background: #faf8f3;
    border-left: 3px solid #D4AF37;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.doree-invoice-container h3 {
    color: #D4AF37;
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.doree-invoice-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .doree-invoice-buttons {
        flex-direction: column;
    }

    .doree-invoice-button {
        width: 100%;
        text-align: center;
    }
}
