.link-underline:link,
.link-underline:visited {
    color: white; /* or set a specific color like 'black' */
    text-decoration: underline;
}

/* Reset some default styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Apply a background color */
body {
    background-color: #f7f7f7;
    font-family: Arial, sans-serif;
}

/* Header styles */
header {
    background-color: #0d67b5;
    color: #ffffff;
    text-align: center;
    padding: 40px 0;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Container styles */
.container {
    text-align: center;
    padding: 20px;
}

/* FAQ styles */
.faq {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #0d67b5;
    font-size: 24px;
    margin-bottom: 20px;
}

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

li {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
}

#uses {
            list-style-type: disc; /* Use a disc as the bullet */
            margin-left: 30px;
        }

/* Button styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0d67b5;
    color: #ffffff;
    text-decoration: none;
    margin: 10px;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #095c9e;
}

#delete-btn {
    background-color: #ff5555; /* Red background color */
    color: #fff; /* White text color */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Add a smooth transition effect */
}

#delete-btn[disabled] {
    pointer-events: none;
    background-color: #dddddd;
    /* any other styles for a disabled button */
}

#logout-link {
    cursor: pointer; /* Add this line to set the cursor to a pointer */
    color: #fff; /* White text color */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Add a smooth transition effect */
}

#logout-link:hover {
    background-color: #095c9e;
}

#logout-message {
    padding-top: 15px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }

    .faq {
        padding: 10px;
    }

    h2 {
        font-size: 20px;
    }

    li {
        font-size: 14px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}
