  :root {
            --primary-bg: #fff;
            --header-bg: #2F3336;
            --footer-bg: #EDB55A; 
            --text-color: #333;
        }

body {
       
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background: var(--primary-bg);
            color: var(--text-color);
        }

header {
            background: var(--header-bg);
            text-align: center;
            padding: 20px;
        }

header img {
            max-width: 80%;
            height: auto;
        }

.container {
            
            max-width: 1200px; /* Adjusted for better centering */
            margin: auto;
            padding: 20px;
            justify-content: center;
           text-align:center;
        }
.info {
            display: block;
            flex-wrap: wrap;
            max-width: 800px; /* Adjusted for better centering */
            margin: auto;
            padding: 20px;
            justify-content: center;
            
          
        }
.form-group {
            margin-bottom: 15px;
            text-align: left;
        }
label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
button {
            background: #EDB55A;
            color: black;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
        }
button:hover {
            background: #26252A;
            color:white;
        }
        /* Basic table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

/* Table headers */
th {
    background: #EDB55A;
    color: black;
    padding: 12px;
}

/* Table rows */
td {
    padding: 10px;
    border-bottom: 1px solid gold;
}

/* Alternate row colors */
tr:nth-child(even) {
    background: #f9f9f9;
}

/* Make table scrollable on small screens */
.table-container {
    width: 100%;
    overflow-x: auto;
}

.message {
            margin-top: 10px;
            padding: 10px;
            border-radius: 5px;
            font-size: 14px;
        }
.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

footer {
            background: var(--footer-bg);
            color: black;
            text-align: center;
            padding: 10px;
        }

/*Navigation*/  

nav {
            height: 80px;
           background: #EDB55A; 
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

.menu {
            list-style: none;
            display: flex;
            padding: 0;
            margin: 0;
        }

.menu li {
            position: relative;
        }

.menu li a {
            display: block;
            padding: 20px 25px;
            color: black;
            text-decoration: none;
            font-size: 20px;
            font-weight:500;
        }

.menu li:hover > .dropdown {
            display: block;
        }

.dropdown {
            display: none;
            position: absolute;
            top: 100%; /* Ensures it appears just below the parent */
            left: 0;
            background: #2c2d2d;
            list-style: none;
            padding: 0;
            min-width: 150px;
        }

.dropdown li a {
            padding: 10px 20px;
            display: block;
            color: white;
        }

.dropdown li a:hover {
            background: #5c5e5e;
        }

/* Hamburger Menu */
.hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 25px;
        }

.hamburger div {
            width: 30px;
            height: 4px;
            background: white;
            margin: 5px 0;
        }
/*Responsive attributes*/
@media (max-width: 768px) {
 /**/   
.menu {
                display: none;
                flex-direction: column;
                background: #2c2d2d;
                position: absolute;
                top: 80px;
                width: 100%;
                left: 0;
            }

.menu li {
                text-align: center;
            }
            .dropdown li a {
            padding: 10px 20px;
            display: block;
            color: white;
        }

.dropdown li a:hover {
            background: #5c5e5e;
        }

.menu.active {
                display: flex;
            }

.hamburger {
                display: flex;
            }
 /**/   
.container {
flex-direction: column;
align-items: center;
}
 /**/   
.left, .center, .right {
width: 100%;
max-width: 600px;
}
          
/* Stack table rows for better mobile display */
table {
border: 0;
}
    
thead {
display: none;
}

tr {
display: block;
margin-bottom: 10px;
border: 1px solid #ddd;
}

td {
display: block;
text-align: right;
padding: 10px;
position: relative;
border-bottom: 1px solid #ddd;
}

td::before {
content: attr(data-label);
position: absolute;
left: 10px;
font-weight: bold;
text-align: left;
}

 /*end responsive*/   
}
        
         
.ad-section {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  text-align:center;
}
 /*Ad Styling*/   
#ad img {
  max-width: 100%;
  height: auto;
}

#ad a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
}

#ad a:hover {
  text-decoration: underline;
}
 /*members dash*/   
.dashboard-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f4f4f4;
  padding: 20px;
}

.member-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 300px;
  margin-bottom: 20px;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #3498db;
  margin-bottom: 10px;
}

.member-card h2 {
  font-size: 22px;
  margin: 10px 0;
  color: #2c3e50;
}

.member-card p {
  font-size: 16px;
  color: #7f8c8d;
}

/* members How-To Guide */
.how-to-guide {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  text-align: left;
}

.how-to-guide h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 10px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
}

.how-to-guide .step {
  margin: 15px 0;
}

.how-to-guide h4 {
  font-size: 18px;
  color: #3498db;
}

.how-to-guide p {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.5;
}

.how-to-guide ul {
  padding-left: 20px;
}
 /*Ians amazing button*/   
.sign_button{
    display: inline-block; 
    padding: 12px 24px; 
    font-size: 18px; 
    font-weight: bold; 
    color: black; 
    text-decoration: none; 
    background: #EDB55A; 
    border-radius: 8px; 
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2); 
    transition: all 0.3s ease-in-out;
}