/*----POST WEB VERSION STYLING-----*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    
    flex-direction: column;
    background-color: #f4f4f4;
    flex-wrap: wrap;
    justify-content: center;
}





        /*         WEB VERSION      */
/*----------  TOP HEADER MAIN WIDGET  ----------*/
.header {
    background-color: #039be5;
    color: #fff;
    padding: 2px 20px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg,#4d5363 0%,#313131 100%),linear-gradient(0deg,#ffffff,#ffffff);
}

.logo {

}

.header .logo h1 {
    font-size: 25px;
}

.category{}

.category ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category ul li {
text-wrap: nowrap;
}

.category ul li a {
    color: white;
    text-decoration: none;
    /* background: #e71663; */
    padding: 10px;
    border-radius: 7px;
    /* border: 1px solid #2196f396; */
    box-shadow: 0px 0px 3px #27ff00;
    font-size: 90%;
}

#menubtn {
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
}


#myForm{
    display: flex;
    align-items: center;
}

#search {
    height: 40px;
    display: flex;
    padding: 0px 10px;
    outline: none;
    border: none;
}
.s-btn {
    background: none;
    border: none;
    margin-left: 0;
    cursor: pointer;
    background: deeppink;
    padding: 10px 20px;
    font-size: large;
    color: aliceblue;
}




/*---unique Category Collapsed navigation list---*/

.collapsed {
    display: none;
}


nav {
    position: absolute;
    background: #fff;
    width: 90%;
    margin: 0px auto;
    padding: 0px;
    min-height: 480px;
    left: 5%;
    top: 115px;
    /* overflow: scroll; */
    border-radius: 12px;
    scroll-behavior: smooth;
    box-shadow: 0px 0px 8px darkslategrey;
    scroll-behavior: smooth;
    z-index: 1;
}

.collapsed h3 {
    font-size: large;
    padding: 10px 0px;
    margin: 0px;
    text-align: center;
    color: #fff;
    background: darkslategrey;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

nav ul {
    display: flex;
    gap: 20px;
    position: relative;
    margin: 0px auto;
    flex-wrap: wrap;
    flex: 5;
    justify-content: center;
    align-items: center;
    background: #333333;
    padding: 13px 0px;
    overflow: scroll;
}


nav ul li {
    background: #f1f1f103;
    list-style: none;
    min-width: 250px;
    border-radius: 7px;
    border: 1px solid #eee;
    padding: 0px 10px;
    display: flex;
    gap: 15px;
    align-items: center;
    text-transform: capitalize;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0px;
    width: 100%;
}


/*-------------END HEADER -----------------*/












        /*     WEB VERSION     */
/*----------  MARQUEE WIDGET  ----------*/

.marquee-container {
    overflow: hidden;
    text-wrap: nowrap;
    background-color: blanchedalmond;
    margin-bottom: 5px;
    margin-top: 2px;
    border-radius: 10px;
    padding: 5px 10px;
    margin-top: 0px;
}

.marquee-content {
    animation: marquee 40s linear infinite;
    font-size: 14px;
    line-height: 0.2em;
    display: flex;
    gap: 15px;
    color: #fff;
    align-items: center;
}
.marquee-content:hover{
        animation-play-state: paused;
    }
.marquee-content p a {
    color: #fff;
    text-decoration: none;
    user-select: none;
    padding: 5px 10px;
    border-radius: 5px;
}

 @keyframes marquee {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-50%);
        }
}
        /*     WEB VERSION     */
/*----------  END MARQUEE  ----------*/









        /*         WEB VERSION      */
/*----------  REFFERENCE POSTS WIDGET  ----------*/

.mainReffPosts{
	width: 95%;
    padding: 20px 10px;
    margin: 0px auto;
}


.mainReffPosts section {
	width: 100%;
}

.mainReffPosts section div {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.mainReffPosts section div a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #2c2929;
    text-decoration: none;
    width: 250px;
    /* width: 20%; */
    box-shadow: 0px 0px 2px darkgreen;
    border-radius: 5px;
    background:#fff;
}

.mainReffPosts section div a img {
    width: 95%;
    height: 150px;
    border-radius: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 2px;
    box-shadow: 0px 0px 5px grey;
}


.mainReffPosts section div span {
    width: 95%;
    text-align: center;
    padding: 10px;
    text-overflow: unset;
    font-weight: 700;
    color: #F44336;
    text-wrap: balance;
}

.mainReffPosts p{
    margin: 0px;
    padding: 5px;
    font-size: small;
    text-wrap: wrap;
}
.mainReffPosts section div button {
    width: 95%;
    display: flex;
    justify-content: center;
    gap: 10px;
    justify-items: center;
    align-items: center;
    padding: 5px 10px;
    background: #E91E63;
    border: none;
    cursor: pointer;
    color: #fff;
    margin-top: -2px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

/*--------END REFFERENCE POSTS SECTION-----------*/























        /*         WEB VERSION      */
/*----------  FULL POSTS WIDGET  ----------*/

.post-section {
    height: auto;
    box-shadow: 0px 0px 3px #eee;
    margin: 0px auto;
    padding: 10px;
    border-radius: 8px;
    background-color: white;
}

.post-title {
    padding: 10px;
    box-shadow: 0px 0px 2px #e91e63d9;
    width: 98%;
    border-radius: 8px;
    margin: 0px;
    margin-bottom: 20px;
}

.post-section table{
    margin:0px auto;
        border: 1px solid #cbcbcb;
}
.post-section table thead{
        background: #f0fff1;
}
.post-section h1, .post-section h2, .post-section h3{
    color:#3F51B5
}
.post-section tbody tr td {
    padding: 10px;
    
    color: #4d4d4d;
    font-size: 90%;
    margin:0px auto;
}
.post-section tbody tr td p img {
    max-width:50px;
    height:50px;
    box-shadow: 0px 0px 0px;
    margin:0px auto;
}

.post-section tbody tr td a {
 text-decoration:none;
    color:red;
}
.post-section tbody tr td a:hover {
 text-decoration:none;
    color:#FFC107;
}

.post-section a{
    text-decoration:none;
}
.post-section img{
   
    
}
.post-section p img{
    margin:10px;
     border-radius:12px;
    box-shadow:0px 0px 5px grey;
    
}
/*------END MAIN POSTS---------*/











                /*         WEB VERSION      */
/*----------  POPULAR CATEGORIES ABOVE FOOTER WIDGET  ----------*/

.categorylist {
    background: bisque;
    width: 100%;
    margin: 0px auto;
    box-shadow: 0px 3px 5px #ff8a00;
}
.categorylist h3{
    text-align: center;
    box-shadow: 0px 2px 5px #5b5b5b;
    padding: 20px 0px;
    width: 100%;
    margin: 0px auto;
    margin-bottom: 15px;
}
body > div.categorylist > div{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.categorylist .calist {
    margin: 10px;
    width: 23%;
    background: floralwhite;
    box-shadow: 0px 0px 4px #5b5b5b54;
    border-radius: 7px;
}

.categorylist div ol {
    background: #9e9e9e05;
    padding: 5px 20px;
    border-radius: 5px;
    padding-bottom: 10px;
    margin: 0px;
}

.categorylist div ol li {
    color: #333;
    margin-bottom: 5px;
    padding: 5px;
    border-bottom: 1px solid #03a1ea;
    display: flex;
    justify-content: space-between;
}
.calist li a{
    text-decoration:none;
    text-decoration: none;
    line-height: 1.5em;
    font-size: 90%;
    color: black;
}
.calist li a:hover{
    color: #E91E63;
    transition: linear 1.2s ease-in;
    transform: scale(1.05);
}
/*------END CATEGORY LIST STYLING--------*/

























        /*--WEB VERSION---*/
/*-----FOOTER STYLING-------*/

footer {
    background-color: #2c3e50;
    color: white;
    padding: 0px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1 1 200px;
    margin: 10px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}
.footer-section p, .footer-section ul {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5em;
}
.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #03A9F4;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding:20px;
    font-size: 14px;
    border-top: 1px solid #bdc3c7;
}



/*--END FOOTER WEB VER---*/



















/*--RIGHT SIDE WIDGET WEB VERSION---*/
main{
    display: flex;
    margin: 0px;
    width: 95%;
    margin: 0px auto;
    gap: 20px;
}
main .post-section{
    width:75%;
}
.right-widget-section{
   width: 25%;
    box-shadow: 0px 0px 3px #e7e5e5;
    border-top-right-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    margin: 0px auto;
    align-items: center;
    border-top-left-radius: 8px;
    height:100%;
}

.right-widget-content {
    width: 94%;
    margin: 0px auto;
    margin-bottom: 10px;
    padding: 10px;
    overflow: hidden;
}



.right-widget-content ul, .right-widget-content ul li {
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-bottom: 5px;
}
.right-widget-content ul, .right-widget-content ol,  .right-widget-content li {
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px;
}
.right-widget-content img, .right-widget-content a img {
    max-width: 100%;
}

.right-widget-content a {
    text-decoration: none;
    color: deeppink;
}

.right-widget-content p, .right-widget-content span{
    line-height: 1.3em;
    font-size: medium;
}

.right-widget-content h1{
    margin-bottom:5px;
    font-size: 18px;
    color: deeppink;
}

.right-widget-content h2{
    margin: 0px;
    font-size: 16px;
    color: deeppink;
}

.right-widget-content h2{
    margin: 0px;
    font-size: 14px;
    color: deeppink;
}







/*Post Body Section Similar-Apps*/
.similar-apps{
margin:0px auto;
display: flex;
    gap: 10px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid darkgray;
    flex-wrap: wrap;
}
.similar-apps a{
    text-decoration: none;
    color: deeppink;
    cursor: pointer;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size:70%;

}
.similar-apps a img{
    text-decoration: none;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    margin: 0px auto;
    box-shadow: 0px 0px 4px #00ff0a;
    
}


.similar-apps a img:hover{
    width:60px;
    height:60px;
    transition: 100ms linear;
}


