/* LET THE STYLING BEGIN */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

body {
    background: #f9faff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
header {
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: flex-end;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

header button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

header button:hover {
    background: #0056a3;
}

/* Main content */
main {
    margin-top: 80px; /* space for fixed header */
    max-width: 600px;
    width: 100%;
    padding: 20px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Centered title & subtitle */
.center-content {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #007bff;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.description {
    font-size: 1rem;
    color: #777;
}

/* Welcome message */
.welcome {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Bug form */
.bug-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.bug-form input,
.bug-form textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
    font-family: inherit;
}

.bug-form button {
    width: 150px;
    align-self: flex-start;
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bug-form button:hover {
    background: #1e7e34;
}

/* Lists */
h3 {
    color: #007bff;
    margin-bottom: 12px;
}

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

li {
    background: #e9ecef;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 1rem;
    color: #444;
}

/* Admin section styling */
#admin-section {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

