.bldc-calculator-container {
    max-width: 800px;
    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;
}

.bldc-title {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.bldc-step {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 6px;
}

.bldc-step h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #F6CA12;
    padding-bottom: 10px;
}

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

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

.bldc-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.bldc-input:focus {
    border-color: #F6CA12;
    outline: none;
    box-shadow: 0 0 5px rgba(246, 202, 18, 0.3);
}

.bldc-button {
    background: #F6CA12;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.bldc-button:hover {
    background: #e0b80f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.country-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.country-tab {
    background: #F6CA12;
    color: #333;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.country-tab:hover {
    background: #e0b80f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.country-tab.active {
    background: #333;
    color: #F6CA12;
}

.bldc-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background: white;
    box-sizing: border-box;
}

.bldc-select:focus {
    border-color: #F6CA12;
    outline: none;
}

.discom-results {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #F6CA12;
}

.discom-results h4 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.discom-info-item {
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.discom-info-item:last-child {
    border-bottom: none;
}

.discom-info-label {
    font-weight: bold;
    color: #333;
    display: inline-block;
    width: 200px;
}

.discom-info-value {
    display: inline-block;
}

.apply-link {
    display: inline-block;
    background: #F6CA12;
    color: #333;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 10px;
}

.apply-link:hover {
    background: #e0b80f;
    text-decoration: none;
}

.bldc-loading {
    text-align: center;
    padding: 20px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #F6CA12;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-subsidy-message {
    background: #fff3cd;
    color: #856404;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #ffeaa7;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .bldc-calculator-container {
        padding: 15px;
        margin: 10px;
    }
    
    .country-tabs {
        flex-direction: column;
    }
    
    .country-tab {
        width: 100%;
    }
    
    .discom-info-label {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
}