body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f7;
    color: #333;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    position: relative;
    display: inline;
    align-items: flex-end;
}

.logo a {
    text-decoration: none;
}

.logo-img {
    margin-right: -5px; /* Adjust this value to control the overlap */
    z-index: 1;
}

.nav-right {
    margin-left: auto;
    text-align: right;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav ul li a.signup {
    color: #ffffff;
    background-color: #007aff;
    padding: 8px 16px;
    border-radius: 4px;
}

.hero {
    position: relative;
    background-image: url('../img/hero_img_1.png'); /* Replace with your hero image */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for transparency */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.cta-button {
    text-decoration: none;
    color: #ffffff;
    background-color: #007aff;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 1em;
    font-weight: bold;
}

footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    /* margin-top: 40px; */
}

.welcome-section {
    background-color: #f5f5f7;
    padding: 40px 20px;
    margin: 20px 0;
    text-align: center;
}

.dashboard-section {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 8px;
    max-width: 1000px;
    margin: 40px auto;
}

.dashboard-section h3 {
    text-align: left;
    margin-bottom: 20px;
}

.dashboard-section p {
    text-align: center;
    margin-bottom: 20px;
}

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

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

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

th {
    background-color: #f5f5f7;
}

td a {
    text-decoration: none;
    color: #007aff;
}

td a:hover {
    text-decoration: underline;
}

.toggle-mode {
    text-align: right;
    margin-bottom: 20px;
}

.form-section, .copy-section, .table-section {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    margin: 40px 0;
    border-radius: 8px;
    max-width: 1000px;
    margin: 40px auto;
}

.form-section h2, .copy-section h3 {
    text-align: center;
    margin-bottom: 20px;
}

.form-section form, .copy-section {
    display: flex;
    flex-direction: column;
}

.form-section form label, .copy-section label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-section form input[type="text"],
.form-section form input[type="password"],
.form-section form input[type="url"],
.copy-section textarea,
textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%; /* Ensure full width */
    max-width: 100%;
}

.copy-button, .form-section form input[type="submit"], .button {
    background-color: #1fc2ff;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    width: 100%; /* Ensure full width */
}

.copy-button:hover, .form-section form input[type="submit"]:hover, .button:hover {
    background-color: #005bb5;
}

.error-message {
    background-color: black;
    color: red;
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
    animation: fadeOut 1s forwards;
    border-radius: 10px;
}

.success-message {
    background-color: #007aff;
    color: #ffffff;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
}

@keyframes fadeOut {
    0% { background-color: black; }
    100% { background-color: transparent; }
}

/* 12-column grid layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-1, .col-10, .col-12 {
    padding-right: 15px;
    padding-left: 15px;
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Add spacing between buttons */
}

.login-button, .reset-button {
    padding: 10px;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box; /* Ensure padding doesn't affect the width */
    width: 100%;
}

.login-button {
    background-color: #1fc2ff;
    color: #ffffff;
}

.login-button:hover {
    background-color: #1aa8db; /* Darker shade for hover effect */
}

.reset-button {
    background-color: #ff104c;
    color: #ffffff;
}

.reset-button:hover {
    background-color: #d10e3c; /* Darker shade for hover effect */
}

/* Styles for expandable rows */
.details-row {
    display: none;
}
.details-row td {
    padding: 10px;
    background-color: #f9f9f9;
}
.expand-btn {
    cursor: pointer;
}
.details-container {
    padding: 10px;
    background-color: #f5f5f7;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}
.feedback-detail {
    margin-bottom: 10px;
}
.respond-link {
    color: #007aff;
    text-decoration: none;
    font-weight: bold;
}
.respond-link:hover {
    text-decoration: underline;
}

.dashboard-section table .expand-btn {
    cursor: pointer;
    text-align: center;
    width: 20px;
}

.dashboard-section table td {
    vertical-align: middle;
}

/* Details container */
.details-container {
    padding: 10px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
}

.feedback-detail {
    margin-bottom: 5px;
}

.respond-link {
    color: #007aff;
    text-decoration: none;
    font-weight: bold;
}

.respond-link:hover {
    text-decoration: underline;
}

/* Other existing CSS ... */
