/* Send Basket Public Styles */
.send-basket-container {
    margin: 20px 0;
}

.send-basket-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.send-basket-form .form-group {
    margin-bottom: 15px;
}

.send-basket-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.send-basket-form input[type="text"],
.send-basket-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.send-basket-form textarea {
    min-height: 100px;
    resize: vertical;
}

.send-basket-form .help-text {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.send-basket-form .button {
    background-color: #00af9a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.send-basket-form .button:hover {
    background-color: #008c7a;
}

.send-basket-status {
    margin: 15px 0;
    padding: 10px 15px;
    border-radius: 4px;
}

.send-basket-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.send-basket-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.send-basket-status.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Modal Styles */
.send-basket-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.send-basket-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.send-basket-modal-close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.send-basket-modal-close:hover {
    color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .send-basket-form {
        padding: 15px;
    }
    
    .send-basket-modal-content {
        margin: 20% auto;
        width: 95%;
    }
}

/* Cart Action Notice Styles */
.cart-action-notice {
    margin: 20px 0;
    padding: 15px;
    background-color: #f7f7f7;
    border-left: 4px solid #00af9a;
}

.cart-action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cart-action-buttons .button {
    flex: 1;
    text-align: center;
}

@media (max-width: 480px) {
    .cart-action-buttons {
        flex-direction: column;
    }
} 