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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.navbar {
    width: 100%;
    background-color: #f8f8f8;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);

}

.logo img {
    height: 50px;
    width: auto;

}


.name{
    font-size: 30px;
    color: rgb(0, 0, 0);
    padding-right: 600px;
    font-family: 'Times New Roman', Times, serif;
}


.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;

}

.nav-links a:hover {
    background-color: #000000;
}

.container {
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin-top: 100px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007BFF;
}

input[type="file"] {
    display: none;
}


label {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

label:hover {
    background-color: #0056b3;
}


img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    display: block;
    margin: 0px auto;
    image-rendering: auto;
    /* Prevent pixelation */
}


button,
a {
    margin-top: 10px;
    padding: 12px 24px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

button:hover,
a:hover {
    background-color: #218838;
}

button:disabled {
    background-color: grey;
    cursor: not-allowed;
}

a {
    display: none;
}

.navbar a {
    display: flex;
    background-color: #4a6ad3;
    color: antiquewhite;
}

