/* -----------------------------------------------Styling of Header------------------------------------ */
.Top {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    align-items: center;
    background-color: #beddfa;
    border: 5px solid;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

#item1 img, #item2 img {
    height: 150px;
    width: auto;
    border-radius: 10px;
}

/* Title and Subtitle Styling */
#item3 h1 {
    font-family: 'Cambria', Georgia, 'Times New Roman', serif;
    font-weight: bold;
    color: rgb(25, 136, 44);
    font-size: 50px;
    margin: 10px 0;
}

#item3 h2 {
    font-family: 'Cambria', Georgia, 'Times New Roman', serif;
    font-weight: bold;
    color: rgb(25, 136, 44);
    font-size: 24px;
    margin: 5px 0;
}

/* Navigation Bar Styling */
.Navigate {
    text-align: center;
    margin-top: 10px;
}

.Navigate ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.Navigate li {
    background-color: #cef07f;
    border: 2px solid #282828;
    border-radius: 10px;
    padding: 5px 15px;
}

.Navigate li a {
    text-decoration: none;
    font-family: 'Cambria', Georgia, 'Times New Roman', serif;
    font-size: 16px;
    font-weight: bold;
    color: #282828;
}

.Navigate li a:hover {
    color: darkgoldenrod;
    font-size: 18px;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .Top {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 15px;
    }

    #item3 h1 {
        font-size: 40px;
    }

    #item3 h2 {
        font-size: 20px;
    }

    .Navigate ul {
        flex-direction: column;
        gap: 10px;
    }

    #item1 img, #item2 img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    #item3 h1 {
        font-size: 30px;
    }

    #item3 h2 {
        font-size: 16px;
    }

    .Navigate li {
        padding: 5px 10px;
    }

    .Navigate li a {
        font-size: 14px;
    }
}


/* -----------------Styling of Form----------------- */

#form1 {
    overflow: visible;
    color: #282828;
    background-color: #cbf7be;
    text-align: center;
    font-family: 'Cambria', 'Cochin', Georgia, Times, 'Times New Roman', 'serif';
    font-size: xx-large;
    line-height: 5px;
    font-weight: bold;
    font-style: normal;
    border: 5px solid #282828;
    border-radius: 10px;
    padding: 2px;
    margin: 1px;
    margin-bottom: 0;
    width: auto;
    height: 400px;
}


#SSR_type {
    font-size: large;
}

#motif_seq {
    font-size: large;
}

.SSR_motif_type {
    position: relative;
    top: 5%;
    left: 0%;
}

/* -------Styling of Action Buttons excluding uploading button--------- */
.Action {
    align-items: center;
    display: flex;
    margin: auto;
    width: 10%;
    overflow: visible;
    position: relative;
    left: 2%;
}


#Button {
    padding: 10px;
    margin: 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: xx-large;
    cursor: pointer;
    font-family: 'Cambria', 'Cochin', Georgia, Times, 'Times New Roman', 'serif';
}

.Button:hover {
    color: darkgoldenrod;
    font-size: larger;
    background-color: rgb(223, 245, 201);
    border: 2px solid black;
}




/* -----------------------------------------------Styling of About Section------------------------------------ */
/* General Reset */

/* Table Styling */

/* -----------------------------------------------Styling of Footer Section------------------------------------ */
.Bottom1 {
    text-align: center;
    background-color: #205c20;
    border-radius: 20px;
    /* margin-top: 0; */
}

.Bottom3 li {
    list-style: none;
}

.Bottom3 li a {
    color: whitesmoke;
    margin: 5px;
    text-decoration: none;
}

.Bottom3 li a:hover {
    text-decoration: underline;
}

.Bottom2 {
    color: whitesmoke;
    padding-bottom: 10px;
}

.Bottom3 {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

/* SNP */
.nucleotide {
    padding: 30px;

}

/* Home */
#home {
    overflow: visible;
    color: #282828;
    background-color: #cbf7be;
    text-align: justify;
    font-family: 'Cambria', 'Cochin', Georgia, Times, 'Times New Roman', 'serif';
    /* line-height: 5px;
    font-weight: bold; */
    font-style: normal;
    border: 5px solid #282828;
    border-radius: 10px;
    padding: 2px;
    margin: 1px;
    margin-bottom: 0;
    width: auto;
    height: auto;
}

#home_containt {
    font-size: larger;
    font-weight: 400;
}

/* slideshow image */
/* Container for the slideshow */
.slideshow-container {
    max-width: 400px;
    position: relative;
    /* align-items: flex-end; */
    margin: auto;
}

/* Style for the images */
.mySlides {
    display: none;
}

/* CSS animation for the slideshow */
/* CSS animation for the slideshow */
@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Apply the animation to the images */
.mySlides.fade {
    animation: fade 3s ease-in-out infinite;
}
.mySlides img {
    width: 300px; /* Adjust the width as needed */
    height: 400px; /* Adjust the height as needed */
    object-fit: cover; /* Maintain aspect ratio and cover container */
  }