@charset "utf-8";
/* CSS Document */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        
        .container {
            max-width: 100%;
            margin-top: 30px;
			margin-left: 10px;
            padding: 0px;
		    border-radius: 8px;
            border: 3px solid #f8ce02;
            background: #f9f9f9;
        }

        .calculator {
            background: #f9f9f9;
            padding: 15px;
            margin: 0;
        }
        
        .input-section {
            display: table-row;
            gap: 10px 12px;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .input-section {
                grid-template-columns: 1fr;
            }
        }
        
        .input-group {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        
        ramplabel {
            font-weight: 600;
            margin-bottom: 4px; 
            color: #444444;
            font-size: 13px;
            line-height: 1.2;
            word-wrap: break-word;
        }
        
        input, select {
            padding: 6px 8px;
			margin: 2px 0px 4px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 12px;
            transition: border-color 0.3s;
            width: 100%;
        }
        
        input:focus, select:focus {
            outline: none;
            border-color: #f8ce02;
        }
        
        .calculate-btn {
            background: linear-gradient(to bottom, #f8ce02 0%, #f8ce02 100%);
            color: black;
            border: none;
            padding: 10px 20px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .calculate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(248, 206, 2, 0.3);
        }
        
        .results {
            margin-top: 15px;
            padding-top: 12px;
            padding-bottom: 10px;
            border-top: 3px solid #f8ce02;
        }
        
        .results h2 {
            color: #000000;
            margin-bottom: 15px;
            margin-top: 0;
            font-size: 1.3em;
            text-align: center;
        }
        
        .ramp-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 8px;
        }
        
        @media (max-width: 1024px) {
            .ramp-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 640px) {
            .ramp-cards {
                grid-template-columns: 1fr;
            }
        }
        
        .ramp-card {
            background: white;
            //border: 2px solid #f8ce02;
            border-radius: 6px;
            padding: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .ramp-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(248, 206, 2, 0.3);
        }
        
        .ramp-card h3 {
            color: #333333;
            margin-bottom: 8px;
            margin-top: 0;
            font-size: 1.1em;
            font-weight: bold;
            border-bottom: 2px solid #f8ce02;
            padding-bottom: 5px;
            text-align: center;
        }
        
        .spec-row {
            display: flex;
            justify-content: space-between;
            padding: 4px 0;
            border-bottom: 1px solid #eee;
            font-size: 12px;
        }
        
        .spec-row:last-child {
            border-bottom: none;
        }
        
        .spec-label {
            font-weight: 600;
            color: #444;
        }
        
        .spec-value {
            color: #444;
        }
        
        .view-more-btn {
            background: white;
            color: #000000;
            border: 2px solid #f8ce02;
            padding: 6px 15px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            display: block;
            margin: 8px auto 5px;
            transition: all 0.2s;
            width: fit-content;
            white-space: nowrap;
        }
        
        .view-more-btn:hover {
            background: #f8ce02;
            color: black;
        }
		
.calculator-subtitle {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: -10px auto 15px auto;
    padding: 0;
    font-weight: 400;
}
		
    .ramp-cards .no-results {
    grid-column: 1 / -1;
    text-align: center;
}
        
        .error {
            background: #f9f9f9;
            border: 0px solid #f8ce02;
            color: #c33;
            padding: 10px;
            border-radius: 0px;
            margin-bottom: 12px;
            font-size: 13px;
        }
        
        .hidden {
            display: none;
        }
    </style>
