.ifsc-finder-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.ifsc-finder-field {
    margin-bottom: 20px;
}

.ifsc-finder-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

.ifsc-finder-field select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 20px;
}

.ifsc-finder-field select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.ifsc-finder-field select:disabled {
    background: #e9ecef;
    cursor: not-allowed;
}

.ifsc-results-table {
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.ifsc-results-table table {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.ifsc-results-table th,
.ifsc-results-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.ifsc-results-table th {
    background: #f4f4f4;
    color: #333;
    font-weight: bold;
}

.ifsc-results-table td {
    background: #fff;
}

.ifsc-results-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 600px) {
    .ifsc-finder-container {
        margin: 10px;
        padding: 15px;
    }

    .ifsc-finder-field select {
        font-size: 14px;
        padding: 10px;
    }

    .ifsc-finder-field label {
        font-size: 14px;
    }

    .ifsc-results-table {
        font-size: 14px;
    }

    .ifsc-results-table th,
    .ifsc-results-table td {
        padding: 10px;
    }
}

/* Admin Styles */
.ifsc-finder-admin-wrap {
    max-width: 800px;
    margin: 20px;
}

.ifsc-finder-admin-wrap h1 {
    margin-bottom: 20px;
}

.ifsc-finder-admin-wrap .form-table th {
    width: 200px;
}

.ifsc-finder-admin-wrap select,
.ifsc-finder-admin-wrap input[type="file"] {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.ifsc-finder-admin-wrap .button-primary {
    margin-top: 10px;
    padding: 8px 16px;
}

.ifsc-finder-admin-wrap .notice {
    margin-top: 20px;
}