/* 
 * Calculator Styles - Modern SaaS UI
 * Matches sureassignmenthelp.com brand aesthetic
 */

.calc-short {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.Calc__header {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-dark);
    text-align: center;
    margin-bottom: 24px;
}

.Calc__row, .Calc__group {
    margin-bottom: 20px;
}

.Calc__group {
    display: flex;
    gap: 15px;
}

.Calc__cell {
    flex: 1;
}

.Calc__label {
    display: block;
    margin-bottom: 8px;
}

.Calc__label-item {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-text);
    margin-bottom: 6px;
}

.Calc__label-item-words {
    font-weight: 400;
    font-size: 12px;
}

/* Custom Select Styling */
.Calc__select {
    position: relative;
    display: block;
}

.Calc__select::after {
    content: '\EA4S'; /* Remix icon arrow-down-s-line or simple chevron */
    font-family: 'remixicon';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-text);
    pointer-events: none;
}

.Calc__select select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-color: #F9FAFB;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 14px 40px 14px 16px;
    font-size: 15px;
    color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.Calc__select select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
    background-color: #ffffff;
}

/* Counter / Pages Input */
.uvocalc--pages__buttons {
    display: flex;
    align-items: center;
    background-color: #F9FAFB;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    height: 50px;
}

.uvocalc--pages__buttons button {
    background: transparent;
    border: none;
    width: 40px;
    height: 100%;
    font-size: 20px;
    color: var(--accent);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uvocalc--pages__buttons button:hover {
    background: var(--accent-soft);
}

.uvocalc--pages__buttons button:disabled {
    color: #CBD5E1;
    cursor: not-allowed;
    background: transparent;
}

.uvocalc--pages__buttons input {
    flex: 1;
    width: 100%;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-dark);
    padding: 0;
}

.uvocalc--pages__buttons input:focus {
    outline: none;
}

/* Total Price */
.Calc__total {
    background: var(--accent-soft);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-strong);
    margin-top: 24px;
}

.Calc__total span {
    font-size: 24px;
    font-weight: 700;
}

/* Submit Button */
.Calc__submit {
    margin-bottom: 0;
    margin-top: 20px;
}

.sform-submit {
    width: 100%;
    background: var(--accent);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.sform-submit:hover {
    background: var(--accent-strong);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
    .calc-short {
        padding: 20px;
    }
    .Calc__group {
        flex-direction: column;
        gap: 20px;
    }
}