/* Shared styles for Personal and Business Pricing Calculators */

.pricing-calculator {
    display: flex;
    flex-direction: column;
    background: transparent;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

.calc-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 15px 20px;
}

.calc-label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
    margin-bottom: 0;
}

.calc-label:hover {
    background: #f9f9f9;
    border-color: #ededed;
}

.calc-label.calc-disabled-checked {
    background: transparent;
    color: #555;
}

.calc-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-chk {
    position: absolute;
    left: 12px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ccc;
    transition: all 0.2s;
}

.calc-label:hover input~.custom-chk {
    border-color: #999;
}

.calc-label input:checked~.custom-chk {
    background-color: #333;
    border-color: #333;
}

.calc-label.calc-disabled-checked input:checked~.custom-chk {
    background-color: #aaa;
    border-color: #aaa;
}

.calc-label input:disabled:not(:checked)~.custom-chk {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
}

.custom-chk:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.calc-label input:checked~.custom-chk:after {
    display: block;
}

.calc-text {
    margin-left: 28px;
    font-weight: 400;
    color: #444;
}

.calc-label.calc-disabled-checked .calc-text {
    color: #777;
}

.calc-label input:disabled:not(:checked)~.calc-text {
    color: #aaa;
}

.calc-result {
    background: #f9f9f9;
    color: #333;
    position: relative;
    overflow: hidden;
}

.calc-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff6600;
}

.calc-price span {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    vertical-align: middle;
}
