        body {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            overflow: auto;
            /* background-color: #f0f0f0; */
            background: linear-gradient(to right, #36b2f2, #ffffff);
            font-family: "Poppins", sans-serif;
        }

.VTable {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 100%;
  border-collapse: collapse;
  border: 3px solid purple;
  border-radius: 20px;
  overflow: hidden; /* Add overflow property to hide the rounded corners */
}

.VTable th, .VTable td {
  text-align: left;
  padding: 10px;
}

.VTable th {
  background-color: #6bc1eb;

}

.VTable tr{
  background-color: #cbeaf9;
 
}

.VTable tr:nth-child(even) { /* Corrected selector for even rows */
  background-color: #cbeaf9;
  
}

.VTable tr:hover {
  background-color: #50bceb;
}       
 
hr {
    border: none; /* Remove the default border */
    height: 2px; /* Set the desired height */
    background-color: #f1f1f1; /* Light grey color */
    margin: 20px 0; /* Add some margin for spacing */
}
        
        .container {
            background-color: #fff;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            max-width: 800px;
            width: 100%;
            text-align: center;
            position: relative;
            margin: 20px;
            overflow: hidden;
        }
        .content {
            padding: 12px;
        }
        .logo {
            position: absolute;
            top: 35px;
            left: 50%;
            transform: translateX(-50%);
        }
        .logo img {
            height: 50px;
        }
        #Review {
            width: 600px;
        }
        .question-counter {
            font-size: 18px;
            color: #c4c5c7;
            margin-bottom: 10px;
            text-align: center;
        }
        .question {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 30px;
            margin-top: 0px;
            color: #4eb9e9;
        }
        .answers {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .answers button, .answers input[type="text"] {
            background-color: #fff;
            color: #333;
            border: none;
            border-radius: 12px;
            padding: 10px 20px;
            font-size: 15px;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .answers button:hover, .answers input[type="text"]:hover {
            background-color: #f0f4f8;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }
        .answers button:active, .answers input[type="text"]:focus {
            background-color: #e0e4e8;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .answers input[type="text"] {
            outline: none;
        }
        
        .answers input[type="number"] {
            background-color: #fff;
            color: #333;
            border: none;
            border-radius: 12px;
            padding: 10px 20px;
            font-size: 16px;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .answers input[type="number"]:hover {
            background-color: #f0f4f8;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }
        .answers input[type="number"]:focus {
            background-color: #e0e4e8;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .answers input[type="number"] {
            outline: none;
        }
        
        .slide {
            display: none;
            opacity: 0;
            transition: opacity 0.5s;
        }
        .slide.active {
            display: block;
            opacity: 1;
        }
        .navigation-buttons {
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
        }
        .navigation-buttons button {
            background-color: #fff;
            color: #333;
            border: none;
            border-radius: 12px;
            padding: 10px 20px;
            font-size: 14px;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .navigation-buttons button:hover {
            background-color: #f0f4f8;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }
        .navigation-buttons button:active {
            background-color: #e0e4e8;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .none-0{
        color: #c4c5c7;
        text-align: center;
        }
        .buttons {
            background-color: #fff;
            color: #333;
            border: none;
            border-radius: 12px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .buttons:hover {
            background-color: #f0f4f8;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }
        .buttons:active {
            background-color: #e0e4e8;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .back-home-button {
        right: 40px;
        background-color: #fff;
        position: absolute;
        color: #333;
        border: none;
        border-radius: 12px;
        padding: 5px 10px;
        font-size: 13px;
        cursor: pointer;
        transition: background-color 0.3s, box-shadow 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        }

        .back-home-button:hover {
            background-color: #f0f4f8;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }

        .back-home-button:active {
            background-color: #e0e4e8;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        #summary-content p {
        margin: 1px 0; /* Adjust this value as needed to reduce spacing */
        line-height: 1.1; /* Adjust this value to control line spacing */
        text-align: Left;
        }

        .Title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 30px;
            color: #4eb9e9;
        }

        .SemiTitle {
            font-size: 19px;
            font-weight: 500;
            margin-bottom: 10px;
            color: #4eb9e9;
        }
        .CallRequest {
            background-color: #fff;
            color: #333;
            border: none;
            border-radius: 12px;
            padding: 4px 8px;
            font-size: 15px;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .CallRequest:hover {
            background-color: #f0f4f8;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }
        
        .CallRequest:active {
            background-color: #e0e4e8;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .EmailMe {
            background-color: #fff;
            color: #333;
            border: none;
            border-radius: 12px;            
            padding: 4px 8px;
            font-size: 15px;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .EmailMe:hover {
            background-color: #f0f4f8;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }
        
        .EmailMe:active {
            background-color: #e0e4e8;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .SignUp {
            background-color: #fff;
            color: #333;
            border: none;
            border-radius: 12px;
            padding: 10px 20px;
            font-size: 16px;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .SignUp:hover {
            background-color: #f0f4f8;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }
        
        .SignUp:active {
            background-color: #e0e4e8;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .summary-buttons {
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
        }
/* ////////////////////////////////////////////////////////////////////////// */        
        @media (max-width: 962px) {
            .container {
                padding: 20px;
                margin: 10px;
            }

            .logo {
                top: 20px;
            }

            .logo img {
                height: 40px;
            }

            .question {
                font-size: 18px;
                margin-bottom: 20px;
            }

            .answers button, .answers input[type="text"], .answers input[type="number"] {
                padding: 8px 15px;
                font-size: 14px;
            }

            .navigation-buttons button {
                padding: 8px 15px;
                font-size: 14px;
            }
            
            .VTable {
            width: 90%;
            }

        }
/* ////////////////////////////////////////////////////////////////////////// */        
        .left, .right {
            width: 50%;
            padding: 20px;
        }
        .right {
            border-left: 1px solid #ccc;
        }
        .title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #4eb9e9; 
        }
        .title2 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .semi-title {
            font-size: 16px;
            font-weight: bold;
            margin-top: 20px;
            color: #4eb9e9;
        }
        .button-group {
            display: flex;
            justify-content: right;
            margin-top: 20px;
        }

        .button-group button {
            background-color: #fff;
            color: #333;
            border: none;
            border-radius: 12px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .button-group button:hover {
            background-color: #f0f4f8;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }
        .button-group button:active {
            background-color: #e0e4e8;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }        

        .button-group2 {
            display: flex;
            justify-content: right;
            margin-top: 20px;
        }
        .button-group2 button {
            background-color: #98D170;
            color: #333;
            border: none;
            border-radius: 12px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .button-group2 button:hover {
            background-color: #B5E295;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
        }
        .button-group2 button:active {
            background-color: #A3CA88;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }


.summary h2, .order-recap h2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #4eb9e9;
}

.order-recap h3 {
    margin-top: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
        .Copyright {
            text-align: center;
            padding: 20px;
            position: fixed;
            color: #696969;
            bottom: 0;
            width: 100%;
        }

.HCC1 {

}   
.HC2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.TC1 {
    flex: 1;
    text-align: center;
}  

        .Qtable {
            width: 100%;
            background-color:#ffffff;
            border-collapse: collapse;
            border: 3px solid green;
            border-radius: 20px;
            overflow: hidden; /* Add overflow property to hide the rounded corners */
            text-align:center;
            
        }
        .Qtable td {
            border-color: #d3d3d3;
            
            padding: 8px;
        }
        .Qtable th {
            background-color: #5fc2f5;
            color: white;
            border: 0px;
            margin: 0px;
            padding: 8px;

        }
       
    .QT_TR{
    border-radius: 20px;
    border: 1px solid #ddd;   
        
    }
    
.edit-popup {
    display: none;
    position: fixed;
    width: 400px;
    padding: 20px;
    left:38%;
    top:25%;
    background-color: #ffffff;
    border-radius: 15px;
    border: 2px solid #ccc; /* Add border */
    box-shadow: 1px 1px 0px rgba(1, 2, 1, 2.1);
}

.popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.popup-header h2 {
    font-size: 18px;
    color: #4eb9e9;
}

.popup-header p {
    font-size: 14px;
    color: #333;
}

.popup-body {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: calc(100% - 20px);
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group label {
    margin-right: 10px;
}

.popup-footer {
    text-align: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-send {
    background-color: #4eb9e9;
    color: #fff;
    margin-right: 10px;
}

.btn-send:hover {
    background-color: #0056b3;
}

.btn-cancel {
    background-color: #6c757d;
    color: #fff;
}

.btn-cancel:hover {
    background-color: #5a6268;
}

.Total{
    Font-weight:Bold;
}
.TotalR{
    Font-weight:Bold;
    background-color: #53bdf4;
}
.TotalD{
    Font-weight:Bold;
    background-color: #53bdf4;
}
.TotalT{
    Font-weight:Bold;
    background-color: #53bdf4;
}