/**
 * İade Talep Formu Stilleri
 */

/* Form Konteyner */
.wtc-refund-form-container {
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    clear: both;
}

/* Buton Wrapper */
.wtc-refund-button-wrapper {
    margin: 30px 0;
    display: block;
    clear: both;
}

.wtc-refund-cancel-wrapper {
    margin: 30px 0;
    display: block;
    clear: both;
}

/* Yükleniyor */
.wtc-loading {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #666;
}

/* Form Başlık */
.wtc-refund-form-wrapper h3 {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
}

/* Form Satırları */
.wtc-refund-form-row {
    margin-bottom: 20px;
}

.wtc-refund-form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.wtc-refund-form-row select,
.wtc-refund-form-row textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Ürün Tablosu */
.wtc-refund-products-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.wtc-refund-products-table th,
.wtc-refund-products-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.wtc-refund-products-table th {
    background-color: #f2f2f2;
}

.wtc-refund-products-table .product-thumbnail {
    width: 50px;
    float: left;
    margin-right: 10px;
}

.wtc-refund-products-table .product-info {
    margin-left: 60px;
}

/* Dosya Yükleme */
.wtc-refund-upload-wrapper {
    margin-top: 8px;
}

.wtc-refund-upload-wrapper .description {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

/* Butonlar */
.wtc-refund-form-actions {
    margin-top: 20px;
    text-align: right;
}

.wtc-refund-form-actions button {
    margin-left: 10px;
}

/* Mesajlar */
.wtc-refund-message {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.wtc-refund-message.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.wtc-refund-message.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

/* Mobil Responsive */
@media screen and (max-width: 768px) {
    .wtc-refund-products-table .product-thumbnail {
        display: none;
    }
    
    .wtc-refund-products-table .product-info {
        margin-left: 0;
    }
    
    .wtc-refund-form-actions {
        text-align: center;
    }
    
    .wtc-refund-form-actions button {
        width: 100%;
        margin: 5px 0;
    }
} 