/* General Body Styles */
body {
    padding: 0;
    margin: 0 auto;
    max-width: 700px;
    color: #1b8cd8;
    font: normal 16px Arial, sans-serif;
    background: none;
    border-left: 1px solid #808080;
    border-right: 1px solid #808080;
}

/* Link Styles */
a:link, a:visited, a:active {
    color: #006699;
    text-decoration: none;
}
a:hover, a:focus {
    color: #000000;
    text-decoration: none;
}

/* Line Divider */
.line {
    padding: 4px;
    border-bottom: 1px solid #e6e6e6;
    color: #f4f4f4;
}

/* Title Section */
.title {
    color: #fff;
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
    background: #3DAAD7 url('/title.gif') repeat-x center top;
    text-shadow: 0 0 3px #5f9cb6;
    border-top: 1px solid #EBEBEB;
    border-bottom: 1px solid #EBEBEB;
}

/* Ad Section */
.ad {
    color: red;
    font-weight: bold;
    font-size: small;
}
.ad a {
    color: red;
}
.ad a img {
    height: auto;
    width: auto;
    max-width: 99%;
}

/* Description Box */
.description {
    padding: 10px;
    background: #eee;
    margin: 10px;
    clear: both;
}

/* Menu Styles */
.gmenu {
    background-color: #fdfdfd;
}
.menu1, .menu {
    color: #1b8cd8;
    background: #ffffff;
    padding: 7px;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin: 0;
}
.menu1 {
    border-bottom: 1px solid #F2F2F2;
}
.menu {
    border-bottom: 1px dotted #8c8c8c;
}

/* Profile Card */
.pr {
    border: 1px solid #adadad;
    border-radius: 15px;
    height: 180px;
    width: 180px;
}

/* Background Section */
.back {
    background-color: #f4f4f4;
    padding: 3px;
    margin: 1px;
}

/* Heading Styles */
h1, h2, h3 {
    font-size: 15px;
    margin: 0;
}

/* Image Styles */
.img {
    vertical-align: middle;
    padding: 1px;
    border: 1px solid #ccc;
}

/* Pagination */
.pages {
    background-color: #E8E8E8;
    padding: 3px;
    margin: 1px 0;
}

/* Blinking Text */
.blink {
    animation: blinker 0.6s linear infinite;
    color: #1c87c9;
    font-size: 30px;
    font-weight: bold;
    font-family: sans-serif;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Search Box */
.search form {
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.search input[type="text"] {
    width: 85%;
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 25px;
    margin-bottom: 3px;
    box-sizing: border-box;
}
.search input[type="submit"] {
    padding: 4px 16px;
    border: none;
    border-radius: 25px;
    background-color: #3DAAD7;
    color: white;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.search input[type="submit"]:hover {
    background-color: #0056b3;
}
.search input[type="hidden"] {
    display: none;
}

.website {
    /* display:flex; */
    justify-content: center;
    color: #ff3358;
    padding: 10px 6px;
    font-weight: 800;
    font-size: 18px;
    text-align: center;
    animation: blink 2s ease-in-out infinite;
}
.website img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    padding: 0 4px;
}
/* Keyframes for blink animation */
@keyframes blink {
  0%, 100% {
    opacity: 1; /* Fully visible */
  }
  50% {
    opacity: 0; /* Fully invisible */
  }
}

.parent-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh; /* Adjust height as needed */
}
.wapsitebox {
    background: #d3e5fc;
    color: #476b98;
    margin: 5px;
    padding: 4px 9px;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
    text-align: center;

}
ul {
  list-style-type: disc; /* Default bullet style */
  margin: 20px; /* Space around the list */
  padding: 0; /* Remove default padding */
}

li {
  margin-bottom: 10px; /* Space between items */
  font-size: 16px; /* Font size */
  color: #333; /* Text color */
}

