.housing-dining-calculator {margin: 20px 0px; width: 100%;}

@scope (.housing-dining-calculator) {
  body {
            /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;*/
            background-color: #f3f4f6;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
        }
        .calculator-container { 
            background-color: #ffffff;
            border: 4px solid #182B49; /* Campus Navy Blue Border */
            border-radius: 12px;
            padding: 30px;
            max-width: 600px;
            width: 100%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        h2 {
            color: #182B49;
            margin-top: 0;
            text-align: center;
            font-size: 24px;
            border-bottom: 3px solid #C69214; /* Campus Gold Accent Line */
            padding-bottom: 12px;
        }
        .instructions {
            font-size: 14px;
            color: #334155;
            line-height: 1.6;
            margin-bottom: 25px;
            background-color: #f8fafc;
            padding: 15px;
            border-left: 4px solid #00629B; /* Triton Blue Bar */
            border-radius: 4px;
        }
        .instructions a {
            color: #00629B;
            text-decoration: underline;
            font-weight: 500;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            font-weight: bold;
            margin-bottom: 8px;
            color: #182B49;
            font-size: 15px;
        }
        select {
            width: 100%;
            padding: 12px;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            font-size: 15px;
            background-color: #fff;
            color: #334155;
            cursor: pointer;
            box-sizing: border-box;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        select:focus {
            outline: none;
            border-color: #00629B;
            box-shadow: 0 0 0 3px rgba(0, 98, 155, 0.2);
        }
        .total-box {
            background-color: #182B49;
            color: #ffffff;
            text-align: center;
            padding: 18px;
            border-radius: 8px;
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .total-box .label-text {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }
        .total-box .price {
            font-size: 32px;
            font-weight: bold;
            color: #FFCD00; /* Vibrant Campus Gold for Visibility */
            margin-top: 5px;
        }
        .btn-container {
            display: flex;
            justify-content: center; /* Centers the button horizontally */
            margin-top: 5px;
        }
        button {
            padding: 12px 40px; /* Added more horizontal padding for a balanced look */
            border: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        .btn-refresh {
            background-color: #00629B;
            color: white;
        }
        .btn-refresh:hover {
            background-color: #004c78;
        }
}    