/* === MAIN CALCULATOR CONTAINER === */
.ltd-calculator {
    /* This makes it fluid to its parent */
    width: 100%;
    
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #f9f9f9;
    box-sizing: border-box; /* Prevents padding from breaking layout */
}

/* === INPUTS & LABELS === */
.calc-input {
    margin-bottom: 15px;
}
.calc-input label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.calc-input input {
    width: 100%;
    padding: 10px;
    box-sizing: border-box; /* Important for 100% width */
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* === RESULTS === */
.calc-results h3 {
    margin-top: 0;
    margin-bottom: 10px;
}
.calc-results p {
    font-size: 1.1em;
    margin: 10px 0;
}
.calc-results strong {
    color: #007bff; /* Blue */
}

/* === ANALYSIS & WARNINGS === */
.calc-analysis p {
    font-size: 0.9em;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

/* Default static warning (Blue/Info) */
#warning-static {
    background-color: #e6f7ff;
    border: 1px solid #b3e0ff;
}

/* Class to HIDE warnings by default */
.warning-hidden {
    display: none;
}

/* Class for normal warnings (Yellow/Warning) */
.warning-visible {
    display: block;
    background-color: #fffbe6;
    border: 1px solid #ffe58f;
}

/* Class for critical warnings (Red/Danger) */
.warning-critical {
    display: block;
    background-color: #fff1f0;
    border: 1px solid #ffccc7;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}