body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: #ffffff;
    touch-action: none; /* Prevents pinch and double-tap zoom */
    -ms-touch-action: none;
    overflow-x: hidden;
    user-select: none; /* Prevents text selection zooming */
    -webkit-user-drag: none; /* Prevents dragging content */
    -webkit-tap-highlight-color: transparent; /* Removes tap highlight */
    -webkit-touch-callout: none; /* Prevents callout menu */
}


.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, rgba(140, 219, 249, 0.7), rgba(255, 255, 255, 0.7)), url('assets/images/vector.png') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    overflow: scroll;
    position: relative;
}

@media screen and (max-width: 767px) {
    .container {
        width: 460px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(to bottom, rgba(140, 219, 249, 0.4), rgba(255, 255, 255, 0.4)), url('../images/nweBackgroundImage.png') no-repeat center center;
        background-size: cover;
        border-radius: 20px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        overflow: scroll;
    }
}

.back-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.back-icon img {
    width: 100%;
    height: 100%;
}

.logo {
    width: 120px;
    margin: 20px 0;
}

.page-title {
    font-size: 24px;
    margin: 10px 0 20px 0;
    text-align: center;
    font-weight: bold;
}

.content {
    width: 400px;
    flex-grow: 1;
    overflow-y: auto;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 67px;
    scroll-behavior: smooth; /* Smooth scrolling */
}

/* Custom Scrollbar Styling */
.content::-webkit-scrollbar {
    width: 10px; /* Scrollbar width */
}

.content::-webkit-scrollbar-track {
    background: #f1f1f1; /* Scrollbar track color */
    border-radius: 10px; /* Rounded track corners */
}

.content::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #00AFF0, #FBF000); /* Gradient scrollbar thumb */
    border-radius: 10px; /* Rounded scrollbar thumb */
}

.content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to right, #007bff, #ff8800); /* Hover color */
}

@media screen and (max-width: 767px) {
    .content {
        width: 100%;
        flex-grow: 1;
        overflow-y: auto;
        padding: 0 20px;
        box-sizing: border-box;
    }
}

.video-container {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 215px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: none;
}

.video-container h2 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 0 10px;
}

.video-container p {
    font-size: 14px;
    color: #555;
    padding: 0 10px 10px 10px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.share-button1, .see-SharedEmails {
    display: inline-block;
    padding: 10px 10px;
    background: linear-gradient(to right, #00AFF0, #FBF000);
    color: white;
    font-size: 12px;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    text-align: center;
    width: auto;
}

.share-button1:hover, .see-SharedEmails:hover {
    background-color: #e0f7ff;
}

.share-button {
    display: inline-block;
    padding: 10px 10px;
    background: linear-gradient(to right, #00AFF0, #FBF000);
    color: white;
    font-size: 12px;
    font-weight: bold;
    border: 0px solid #00AFF0;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    width: 40%;
    text-align: center;
}

.share-button:hover {
    background-color: #e0f7ff;
}

.rate-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    padding: 10px 0;
    background: linear-gradient(to right, #00AFF0, #FBF000);
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .rate-button {
        width: 80%;
        padding: 10px 0;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content1 {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.close1 {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.submit-button {
    padding: 10px 20px;
    background: linear-gradient(to right, #00AFF0, #FBF000);
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    width: 90%;
}

.share-input {
    padding: 10px;
    width: 85%;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #ddd;
    outline: none;
    border-radius: 5px;
    margin: 20px 0;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #00AFF0;
    border-radius: 50%;
    cursor: pointer;
}

.custom-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #00AFF0;
    border-radius: 50%;
    cursor: pointer;
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
    margin-top: 10px;
    font-weight: bold;
}

.rating-labels span {
    width: 20%;
    text-align: center;
}
