/* Basic styling for the pricing calculator */
.calculator-wrapper {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--siq-dark-lighter);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: left;
}

.option-group {
    margin-bottom: 2.5rem;
}

.option-group h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.tile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tile {
    flex-grow: 1;
    padding: 1rem;
    background-color: var(--siq-dark);
    border: 1px solid var(--gray-700);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-align: center;
}

.tile:hover {
    border-color: var(--siq-orange);
    transform: translateY(-2px);
}

.tile.selected {
    background-color: var(--siq-blue);
    border-color: var(--siq-blue);
    color: white;
    box-shadow: 0 0 15px rgba(102, 155, 188, 0.5);
}

.tile-desc {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.tile.selected .tile-desc {
    color: rgba(255, 255, 255, 0.8);
}

.config-section {
    margin-bottom: 1.5rem;
}

.config-label {
    display: block;
    margin-bottom: 0.5rem;
}

.config-input, #countries-select {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--siq-dark);
    border: 1px solid var(--gray-700);
    color: var(--foreground);
    border-radius: 0.5rem;
}
#countries-select {
    height: 150px;
}

#price-summary-container {
    margin-top: 3rem;
    padding: 2rem;
    border: 1px dashed var(--gray-700);
    border-radius: var(--radius);
    text-align: center;
}

#price-summary-container h2 {
    margin-top: 0;
}