.ifsc-search-container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}
.ifsc-search-container h2 {
    color: #333;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    font-size: 24px;
}
.search-mode {
    margin-bottom: 20px;
}
.search-mode label {
    margin-right: 20px;
    font-size: 16px;
}
.search-section {
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
}
.form-group select, .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: #f9f9f9;
}
.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
#searchBtn, #resetBtn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}
#searchBtn {
    background: #3498db;
    color: white;
}
#searchBtn:hover {
    background: #2980b9;
}
#resetBtn {
    background: #666;
    color: white;
}
#resetBtn:hover {
    background: #555;
}
#ifscResults {
    margin-top: 20px;
    text-align: left;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    min-height: 50px;
}
.result-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.result-item:last-child {
    border-bottom: none;
}
.result-item strong {
    color: #333;
}