/* Dowry Calculator Styles */
/* Isolated styles with unique prefixes to prevent theme conflicts */

.dc-calculator-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.dc-calculator-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.dc-form-group {
    margin-bottom: 20px;
}

.dc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.dc-input,
.dc-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 16px;
}

.dc-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dc-checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
}

.dc-checkbox-group input[type="checkbox"] {
    margin-right: 5px;
}

.dc-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}

.dc-button:hover {
    background-color: #333333;
}

.dc-results {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    display: none;
}

.dc-results h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.dc-results-content {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

.dc-breakdown {
    margin: 20px 0;
    padding: 15px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
}

.dc-breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.dc-breakdown-item:last-child {
    border-bottom: none;
    font-weight: bold;
}

#dc-download-btn {
    margin-top: 15px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .dc-calculator-container {
        padding: 15px;
    }
    
    .dc-checkbox-group {
        flex-direction: column;
        gap: 8px;
    }
}

@media screen and (max-width: 480px) {
    .dc-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .dc-input,
    .dc-select {
        font-size: 14px;
    }
    
    .dc-results-content {
        font-size: 20px;
    }
} 