.calculation-wrapper {
    min-height: 600px;
    background: #f8f9fa;
    direction: rtl;
}

.calc-sidebar {
    width: 136px;
    background: #0E2138;
    color: #fff;
}

.calc-sidebar ul {
    margin: 0;
    padding: 0;
}

.calc-sidebar ul li {
    padding: 14px 6px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    text-align: center;
}

.calc-sidebar ul li.active,
.calc-sidebar ul li:hover {
    background: #FF6200;
}

.calc-content {
    background: #fff;
}

.calc-title {
    color: #0E2138;
    font-weight: 800;
}

.sheet-form {
    direction: rtl;
}

.sheet-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    gap: 14px;
    margin-bottom: 9px;
}

.calculate-online {
    font-size: 12px;
}

.sheet-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #0E2138;
    white-space: nowrap;
}

.sheet-badge {
    background: #FF6200;
    color: #fff;
    font-size: 13px;
    padding: 2px 8px;
    font-weight: 800;
}

.sheet-input .form-control,
.sheet-input .form-select {
    border-radius: 0px;
}

.input-group {
    direction: rtl;
}

.input-group .form-control {
    text-align: center;
}

.input-group .form-select {
    min-width: 90px;
}

.form-control:focus,
.form-select:focus {
    border-color: #FF6200;
    box-shadow: 0 0 0 0.15rem rgba(255, 98, 0, 0.25);
}

.calc-btn {
    background: #FF6200;
    color: #fff;
    font-weight: 800;
    padding: 12px;
    border: none;
}

.calc-btn:hover {
    background: #e55600;
}

.share-social {
    background-color: #0E2138;
}

.copy-btn {
    border: 2px solid #0E2138;
}

.share-social:hover {
    background-color: #0E2138;
}

.share-icons i {
    color: #FF6200;
}

@media (min-width: 576px) {
    .calculate-online {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .sheet-row {
        grid-template-columns: 1fr;
    }
}

@media (min-width:768px) {
    .sheet-row {
        display: grid;
        grid-template-columns: 190px 1fr;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
    }
}

@media (min-width:992px) {
    .calc-content {
        background: #fff;
    }

    .sheet-form .sheet-input-list {
        width: 52%;
    }

    .sheet-row {
        padding: 6px 0;
    }

    .sheet-form .sheet-input {
        width: 95%;
    }
}

@media (min-width:1200px) {
    /* .sheet-form .sheet-input {
        width: 50%;
    } */

    .sheet-form .sheet-input-list {
        width: 52%;
    }
}

@media (min-width:1400px) {
    /* .sheet-form .sheet-input {
        width: 40%;
    } */

    .sheet-form .sheet-input-list {
        width: 52%;
    }
}


.unit-select {
    direction: rtl;
}

.calc-sidebar .nav-link {
    color: white !important;
    border: 1px solid white;
}

.calc-sidebar .nav-link.active {
    color: white !important;
    background-color: #FF6200;
}

.material-select {
    direction: rtl;
}

.sheet-input .form-control {
    width: 70%
}

.sheet-input .form-select {
    width: 30%
}

.sheet-input .form-control:focus,
.sheet-input .form-select:focus {
    border: 1px solid #FF6200 !important;
}

.sheet-input .form-control {
    width: 42%;
}

.sheet-input .form-select {
    width: 22%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.sheet-input .form-control,
.sheet-input .form-select {
    font-size: 14px;
    border-radius: 0;
}

.unit-select {
    min-width: 70px !important;
    font-size: 13px;
    padding: 0.35rem 0.4rem;
    background-color: #f1f3f5;
}

.form-control:focus,
.form-select:focus {
    border-color: #FF6200;
    box-shadow: 0 0 0 0.15rem rgba(255, 98, 0, 0.25);
}

.sheet-row {
    padding: 0;
}

.sheet-label {
    font-size: 14px;
    opacity: 0.9;
}

.sheet-badge {
    background: linear-gradient(135deg, #FF6200, #ff7a2f);
    border-radius: 4px;
    font-size: 12px;
    padding: 3px 7px;
    letter-spacing: 0.5px;
}

.calc-title {
    display: block;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f1f1;
    margin-bottom: 28px;
}

.calc-btn {
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(255, 98, 0, 0.25);
}

.calc-btn:hover {
    background: #e55600;
}

.calc-btn:active {
    transform: scale(0.98);
}

.calc-sidebar {
    box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
}

.calc-sidebar .nav-link {
    font-size: 13px;
    padding: 14px 6px;
    transition: all 0.25s ease;
}

.calc-sidebar .nav-link img {
    opacity: 0.85;
}

.main-header.scrolled .calculate-online {
    color: black !important;
}

.calculate-online {
    font-size: 14px;
}

.calc-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: hidden;
    overflow-x: hidden;
    flex-shrink: 0;
}
.z-10000{
    z-index: 10000;
}
.calc-btn-mobile{
    background-color: #0E2138;
}
.fs-12{
    font-size: 12px;
}
.border-red{
    border: 1px solid red !important;
}