﻿body {
    background-color: #f0f0f0;
}


THIS CSS PAGE IS USED IN ABOUT, HELP & SEARC

START HELP and ABOUT CENTER MAIN

.helpMain-Container {
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto; Mobile scroll
    background-color: #fff;
}

.helpMain-intro {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.helpMain-items {
    max-width: 600px;  Ensures it doesn't get too wide 
    background-color: white;
    padding: 20px;
    margin: 0 auto;  Center align the list items 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.about-footer {
    flex-direction: row;
    text-align: center;
}
    .about-footer a.inline {
        display: inline;
    }

END HELP CENTER MAIN
START HOW TO USE THIS APP PAGE & ABOUT
.howTo-container {
    margin: 0 auto;
    padding: 20px;
    background-color: #f0f0f0;
    box-sizing: border-box;
    overflow-y: auto; Mobile scroll
}

.howTo-intro {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;  Space between intro and list items 
}

.howTo-listItems {
        width: 100%;
        max-width: 600px;  Ensures it doesn't get too wide 
        height: auto;
        background-color: white;
        padding: 20px;
        margin: 0 auto;  Center align the list items 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        text-align: left;
        padding: 20px;
    }

    .howTo-listItems h3 {
        margin-top: 20px;
        margin-bottom: 5px;
    }

    .howTo-listItems ul {
        padding-left: 5px;
    }

    .howTo-listItems li {
        margin-bottom: 10px;
    }

.specila-color-placing {
    color: #EC6444;
    text-align:center;
    font-size: 15px;
}

.style-text-color {
    font-weight: 600;
    color: #F28E47;
    font-size: 18px;
}
END HOW TO USE THIS APP PAGE
 Rounded Divider
hr.rounded-long {
    border-top: 5px solid #F28E47;
    border-radius: 20px;
    margin-top: 5px;
}

hr.rounded-short {
    border-top: 5px solid #F28E47;
    border-radius: 20px;
    width: 30%;
    margin: auto;
    margin-top: 5px;
}

hr.rounded-thin-long {
    border-top: 2px solid #F28E47;
    border-radius: 20px;
    margin-top: 5px;
}
END DIVIDER
CONTACT US PAGE
.contact-icons {
    width: 50px;
    height: 50px;
}

.contactUs-items {
    max-width: 600px;  Ensures it doesn't get too wide 
    background-color: white;
    padding: 20px;
    margin: 0 auto;  Center align the list items 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}

SEARCH PAGE

.textBox {
    width: 100%;
    height: 70px;
    border: 1px solid #F28E47;
    border-radius: 5px;
    box-sizing: border-box;
    resize: vertical;
}