
/* Inherit base styles from Kingdoms.css */
@import url('Kingdoms.css');

/* Custom styles for SpeedUpsCalc */
.speedup-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.speedup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.speedup-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.speedup-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.speedup-item input {
    flex: 1;
    min-width: 0;
}

.results-panel {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.results-panel h2 {
    text-align: center;
    color: #333;
    margin-bottom: 15px;
}

.results-panel h4 {
    color: #666;
    text-align: center;
    margin: 10px 0;
}

.calculate-button {
    /* boton al centro */
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;

    width: 200px !important;
    margin: 20px auto;
}
.info-section {
    max-width: 800px;
    margin: 0 auto 30px;
}

.info-section h4 {
    /* text center */
    text-align: center;
    margin-bottom: 15px;
}



@media (max-width: 768px) {
    .speedup-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}