/* Frontend Form Styles */
.tvw-form-wrapper {
    max-width: 500px;
    margin: 20px auto;
}

.tvw-giveaway-form {
    background: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tvw-form-group {
    margin-bottom: 20px;
}

.tvw-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.tvw-form-group label .required {
    color: #dc3545;
}

.tvw-form-group input,
.tvw-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    font-family: inherit;
}

.tvw-form-group input:focus,
.tvw-form-group textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.2);
}

.tvw-submit-btn {
    background: #0073aa;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.tvw-submit-btn:hover {
    background: #005a87;
}

.tvw-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tvw-form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 3px;
    display: none;
}

.tvw-form-message.show {
    display: block;
}

.tvw-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tvw-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Notice Styles */
.tvw-notice {
    padding: 15px;
    margin: 20px 0;
    border-radius: 3px;
    border-left: 4px solid;
}

.tvw-notice.success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.tvw-notice.error {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.tvw-notice.info {
    background: #d1ecf1;
    color: #0c5460;
    border-left-color: #17a2b8;
}

/* My Account Giveaway Section */
.tvw-giveaway-section h2 {
    color: #003366;
    margin-bottom: 20px;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.tvw-giveaway-section h3 {
    color: #28a745;
    margin-top: 30px;
}

.tvw-giveaway-section table {
    width: 100%;
    border-collapse: collapse;
}

.tvw-giveaway-section table thead {
    background: #f5f5f5;
    border-bottom: 2px solid #ddd;
}

.tvw-giveaway-section table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #ddd;
}

.tvw-giveaway-section table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}

.tvw-giveaway-section table tr:hover {
    background: #f9f9f9;
}

.tvw-giveaway-section table tr:last-child td {
    border-bottom: 2px solid #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tvw-giveaway-section {
        padding: 15px;
    }

    .tvw-giveaway-section table {
        font-size: 12px;
    }

    .tvw-giveaway-section table th,
    .tvw-giveaway-section table td {
        padding: 8px;
    }

    .tvw-giveaway-section h2 {
        font-size: 18px;
    }

    .tvw-giveaway-section h3 {
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .tvw-form-wrapper {
        margin: 10px auto;
    }

    .tvw-giveaway-form {
        padding: 15px;
    }

    .tvw-giveaway-section table {
        font-size: 12px;
    }

    .tvw-giveaway-section table th,
    .tvw-giveaway-section table td {
        padding: 8px;
    }
}
