/* Scaling Guidance Plugin (INR) - style.css */
.meta-ads-scaling-container {
    max-width: 600px;
    margin: 20px auto;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.meta-ads-scaling-container h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.meta-ads-scaling-container h4 {
    margin: 20px 0 10px;
    color: #555;
}

.calculator label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 600;
    color: #444;
}

.calculator input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.calculator button {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 5px;
    width: 100%;
}

.calculator button:hover {
    background: #005a87;
}

.result {
    margin-top: 20px;
    padding: 15px;
    background: #e7f3ff;
    border-left: 4px solid #007cba;
    border-radius: 4px;
    font-weight: 500;
    line-height: 1.6;
}

.warning {
    color: #d63638;
    font-weight: 600;
    margin-top: 10px;
}

/* Phases list styling */
.phases {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.phases li {
    padding: 8px 12px;
    background: #f0f0f0;
    margin: 5px 0;
    border-radius: 4px;
    border-left: 3px solid #007cba;
}

.phases li strong {
    color: #007cba;
}

/* Glossary tooltip style (if used) */
.glossary {
    margin-top: 20px;
    padding: 10px;
    background: #eee;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.tooltip {
    border-bottom: 1px dotted #333;
    cursor: help;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .meta-ads-scaling-container {
        margin: 10px;
        padding: 15px;
    }
    .calculator button {
        padding: 10px;
    }
}