/**
 * GiftCard Frontend Styles
 * 
 * @package GiftCard
 * @since 2.0
 */

/* 礼品卡容器 */
.giftcard-container {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* 礼品卡表单 */
.giftcard-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.giftcard-form input[type="text"],
.giftcard-form input[type="email"],
.giftcard-form input[type="number"],
.giftcard-form textarea,
.giftcard-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.giftcard-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.giftcard-form button {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.giftcard-form button:hover {
    background-color: #005a87;
}

/* 礼品卡消息 */
.giftcard-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.giftcard-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.giftcard-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.giftcard-message.warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

/* 礼品卡列表 */
.giftcard-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.giftcard-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.giftcard-list li:last-child {
    border-bottom: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .giftcard-container {
        padding: 15px;
        margin: 15px 0;
    }
    
    .giftcard-form {
        gap: 10px;
    }
    
    .giftcard-form input[type="text"],
    .giftcard-form input[type="email"],
    .giftcard-form input[type="number"],
    .giftcard-form textarea,
    .giftcard-form select {
        padding: 8px;
        font-size: 16px;
    }
}
