* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;

    background-color: #f4f4f4; /* Primary Background Color */
    background-image: url('https://hopsbunnies.com/img/HopsBg3.png');
    background-size: 150px;
    color: #333333; /* Primary Text Color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    margin:20px;
}

.container {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    max-width: 95vw;
    overflow: scroll;
    padding: 20px;
    padding-top:0px;
    background-color: #ffffff; /* Secondary Background Color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
}
.homepage
{
    max-width: 95vw;

}
.about
{
    max-width: 80vw;
    padding: 50px;
}
.about h2{
    padding-top:1em;
    color: #6cace6; /* Main Accent Color */

    font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;

}
.team-members
{
    display:flex;
    flex-direction:column;
}
.team-member
{
    width:500px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
    padding: 20px;
    margin:20px;
    text-align: left;

}
.team-member h3
{
    text-align: center;
    padding-bottom: 1em;

}
.container .container {

    box-shadow: none;
}

.logo img {
    max-width: 150px;
    border:0;
    padding:0;
    margin:0;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #6cace6; /* Main Accent Color */

    font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;
}

p {
    font-size: 1.2em;
    color: #666666; /* Secondary Text Color */
}

a {
    color: #cb6ce6; /* Accent Color 1 */
    text-decoration: none;
}

a:hover {
    color: #6ce6b1; /* Accent Color 2 */
}

.chewy-regular {
    font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;
  }

.roboto-thin {
font-family: "Roboto", sans-serif;
font-weight: 100;
font-style: normal;
}

.roboto-light {
font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: normal;
}

.roboto-regular {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}

.roboto-medium {
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: normal;
}

.roboto-bold {
font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: normal;
}

.roboto-black {
font-family: "Roboto", sans-serif;
font-weight: 900;
font-style: normal;
}

.roboto-thin-italic {
font-family: "Roboto", sans-serif;
font-weight: 100;
font-style: italic;
}

.roboto-light-italic {
font-family: "Roboto", sans-serif;
font-weight: 300;
font-style: italic;
}

.roboto-regular-italic {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: italic;
}

.roboto-medium-italic {
font-family: "Roboto", sans-serif;
font-weight: 500;
font-style: italic;
}

.roboto-bold-italic {
font-family: "Roboto", sans-serif;
font-weight: 700;
font-style: italic;
}

.roboto-black-italic {
font-family: "Roboto", sans-serif;
font-weight: 900;
font-style: italic;
}


.content {
    display: flex;
    flex: 3;
    margin-right: 20px;
    flex-direction: column;
}

.profile {
    flex: 3;
    text-align: center;
    margin: 20px;
}
.ancestry-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    font-size:0.8em;
    margin-top:0px;
    padding-top:0px;
}
.generation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1em;
}
.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    padding: 1em;
    margin: 5px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.parents {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.parent {
    margin: 10px;
}

.main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.container {
    margin-right: 20px;
}

.sidebar {
    flex: 1;
    background-color: #ffffff; /* Secondary Background Color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.sidebar h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #6cace6; /* Main Accent Color */
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #cb6ce6; /* Accent Color 1 */
    text-decoration: none;
}

.sidebar ul li a:hover {
    color: #6ce6b1; /* Accent Color 2 */
}

.relationship
{
    color: #999999; /* Secondary Text Color */
}
.male
{
    color: #6cace6; /* Main Accent Color */
}
.female
{
    color: #cb6ce6; /* Accent Color 1 */
}
footer{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 1em;
}
.card p {

    font-size: 1em;
}
.card h2 {
    font-size: 1em;
}
nav{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width:100%;
    padding-bottom:0.5em;
}
nav ul li a{
    text-decoration: none;
}
nav ul{
    list-style-type: none;

    width:100%;
    margin: 0;
    padding: 0;    
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}


.snip1135 {
    /* font-family: "Chewy", system-ui; */
    text-align: center;
    /* text-transform: uppercase; */
    font-weight: 500;
  }
  .snip1135 * {
    box-sizing: border-box;
  }
  .snip1135 li {
    display: inline-block;
    list-style: outside none none;
    margin: 0 1.5em;
    padding: 0;
  }
  .snip1135 a {
    padding: 0.5em 0;
    color: #cb6ce6;
    position: relative;
    letter-spacing: 1px;
  }
  .snip1135 a:hover {

    color: #6ce6b1;
    text-decoration-line: underline;
    text-decoration-style: wavy;
  }

  /*
  .snip1135 a:before,
  .snip1135 a:after {
    position: absolute;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
  }
  .snip1135 a:before {
    bottom: 0;
    display: block;
    height: 3px;
    width: 0%;
    content: "";
    background-color: #6ce6b1;
  }
  .snip1135 a:after {
    left: 0;
    top: 0;
    padding: 0.5em 0;
    position: absolute;
    content: attr(data-hover);
    color: #6ce6b1;
    white-space: nowrap;
    max-width: 0%;
    overflow: hidden;
  }
  .snip1135 a:hover:before,
  .snip1135 .current a:before {
    opacity: 1;
    width: 100%;
  }
  .snip1135 a:hover:after,
  .snip1135 .current a:after {
    max-width: 100%;
  }
  */

  .dashboard-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    background-color: #ffffff; /* Secondary Background Color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.dashboard-nav, .account-details {
    flex: 1;
    padding: 20px;
    background-color: #f8f8f8; /* Sidebar Background Color */
    border-right: 1px solid #e0e0e0; /* Sidebar Border Color */
}

.dashboard-nav ul, .account-details ul {
    list-style-type: none;
    padding: 0;
}

.dashboard-nav ul li, .account-details ul li {
    margin-bottom: 10px;
}

.dashboard-nav ul li a, .account-details ul li a {
    color: #6cace6; /* Main Accent Color */
    text-decoration: none;
}

.dashboard-nav ul li a:hover, .account-details ul li a:hover {
    color: #cb6ce6; /* Accent Color 1 */
}

.dashboard-nav h2, .account-details h2 {
    padding-bottom: 1em;
}

.main-content {
    flex: 3;
    padding: 20px;
    text-align: left;
}

.main-content h1 {
    font-size: 2em;
    color: #6cace6; /* Main Accent Color */
    margin-bottom: 20px;
}

.main-content h2 {
    font-size: 1.5em;
    color: #333333; /* Primary Text Color */
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #e0e0e0;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f8f8f8; /* Table Header Background Color */
}

.filters {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.form-group label {
    width: 150px; /* Adjust this width as needed */
    text-align: right;
    margin-right: 1em;
}

.form-group input {
    flex: 1;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group button {
    margin-left: 151px; /* Same as label width + margin-right */
    padding: 0.5em 1em;
    border: none;
    border-radius: 4px;
    background-color: #6cace6; /* Main Accent Color */
    color: white;
    cursor: pointer;
}

.form-group button:hover {
    background-color: #cb6ce6; /* Accent Color 1 */
}

.form-divider {
    border-top: 1px solid #ccc;
    margin: 1em 0;
}

.form-description {
    margin-bottom: 1em;
    color: #666;
    text-align: left;
    margin-left: 151px; /* Align with input fields */
}

.food-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.food-info p {
    display: flex;
    justify-content: space-between;
}

.food-quantity {
    color: #6cace6; /* Main Accent Color */
    font-weight: bold;
}

.hops-cash {
    color: #cb6ce6; /* Accent Color 1 */
    font-weight: bold;
}

.account-details hr {
    margin: 10px 0;
    border: 0;
    border-top: 1px solid #ccc;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #ddd;
}
.pagination a.active {
    background-color: #6cace6;
    color: white;
    border: 1px solid #6cace6;
}

.ticket-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 15px;
}

.ticket-form .form-group {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.ticket-form label {
    font-weight: bold;
    flex:1;
}

.ticket-form input[type="text"],
.ticket-form select,
.ticket-form textarea {
    flex:3;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ticket-form textarea {
    height: 200px; /* Increased height */
    resize: vertical;
}

.ticket-form button {
    padding: 10px 20px;
    background-color: #6cace6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    align-self: flex-start;
}

.ticket-form button:hover {
    background-color: #5a9bd3;
}
.footer-nav
{
    font-size:0.8em;
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width:100%;
    list-style-type: none;
    margin-top:1em;
}
.footer-nav ul,  .simple-ul
{
    list-style-type: none;
}
.privacy
{
    max-width:60%;
    padding: 2em 4em;
    display: flex;
    flex-direction: column;
    
}
.privacy p, .privacy ul, .simple-ul{
    text-align: left;
    color: #333333; /* Primary Text Color */
    font-size: 1.2em;
}
.privacy ul{
    padding-top: 1.2em;
}

.simple-ul {
    align-items: center;
    text-align: center;
}

.pagination-tickets {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-tickets a {
    color: #007bff;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 4px;
}

.pagination-tickets a.active {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.pagination-tickets a:hover {
    background-color: #ddd;
}

.blog-post {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width:75vw;
    display:flex;
    flex-direction: column;
}

.blog-post h2 {
    margin-top: 0;
}

.blog-content {
    margin-top: 20px;
    display:flex;
    flex-direction: column;
}
.blog-content img {
    max-width:100%;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-form .form-group {
    display: flex;
    flex-direction: column;
}

.comment-form label {
    margin-bottom: 0.5rem;
}

.comment-form textarea {
    width: 100%;
    height: 150px;
    padding: 0.5rem;
    font-size: 1rem;
    resize: vertical;
}

.comment-form button {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
}

.comments-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comments-list li {
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
}

.comments-list li:last-child {
    border-bottom: none;
}

.comments-list p {
    margin: 0 0 0.5rem 0;
}
.comment-form-group {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    text-align: left;
    width:100%;
}
.comment-form-group label{
    text-align: left;
}
.comment-form-group button{
    margin:1em;
}
.critical {
    color: red;
}

@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }

    .container {
        margin-right: 0;
    }

    .sidebar {
        margin-top: 0;
        margin-bottom: 20px;
    }
    .generation {
        display: flex;
        flex-direction: column;
    }
}

