.indo-transfer-card {
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.transfer-title {
    font-weight: bold;
}
.transfer-price {
    color: #e63946;
    font-size: 18px;
}
/* Form wrapper */
#indo-transfer-filter-form {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 20px auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Label */
#indo-transfer-filter-form label {
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
    font-size: 14px;
}

/* Row item */
.transfer-filter-row {
    flex: 1 1 32%;
    min-width: 200px;
}

/* Select box */
#indo-transfer-filter-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fafafa;
    font-size: 14px;
    transition: 0.25s;
    color: #333;
}

#indo-transfer-filter-form select:focus {
    border-color: #86A5FF;
    background: #fff;
    box-shadow: 0 0 6px rgba(0,115,170,0.25);
}

/* Submit button */
#indo-transfer-filter-form button {
    padding: 11px 26px;
    border-radius: 8px;
    background: #86A5FF;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s;
    margin-top: 22px;
}

#indo-transfer-filter-form button:hover {
    background: #86A5FF;
}

/* Table results */
#indo-transfer-filter-results table.indo-result-table {
    width: 100%;
    margin-top: 25px;
    border-collapse: collapse;
    font-size: 15px;
}

#indo-transfer-filter-results table th {
    background: #86A5FF;
    color: #fff;
    padding: 12px;
    text-align: left;
}

#indo-transfer-filter-results table td {
    padding: 12px;
    border-bottom: 1px solid #eaeaea;
}

#indo-transfer-filter-results table tr:nth-child(even) {
    background: #f9f9f9;
}

#indo-transfer-filter-results table tr:hover {
    background: #eef7ff;
}

/* Responsive */
@media(max-width: 600px) {
    #indo-transfer-filter-form {
        padding: 15px;
    }

    .transfer-filter-row {
        flex: 1 1 100%;
    }

    #indo-transfer-filter-form button {
        width: 100%;
    }
}
