
body {
    margin: 0;
    padding: 0;
    background-image: url('pozadi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.menu-container {
    max-width: 800px;
    margin: 0px auto 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.menu-item {
    border: 2px solid #ccc;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: #777;
    box-shadow: 0 0 10px rgba(119, 119, 119, 0.3);
}

.menu-item img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.upload-form {
    margin-bottom: 20px;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
}

h1, h2 {
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

input[type="file"] {
    padding: 10px;
    margin-right: 10px;
}

button {
    padding: 15px;
    background-color: #949494;
    color: #dcdcdc;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #6e6e6e;
}

button:active {
    background-color: #494949;
}

.menu-item a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-item a:hover {
    color: #333;
}

.delete-button {
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.delete-button:hover {
    background-color: #cc0000;
}

input[type="date"] {
    padding: 10px;
    margin-right: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

@media (max-width: 480px) {
    body {
        font-size: 20px;
    }
    .login-input,
    .login-button {
        font-size: 20px;
        padding: 18px;
    }
    .login-container {
        gap: 25px;
        padding: 30px;
    }
    .toggle-password {
        font-size: 22px;
    }
    .menu-container,
    .upload-form {
        padding: 30px;
    }
    .menu-item {
        font-size: 20px;
        padding: 20px;
    }
    h1, h2 {
        font-size: 2em;
    }
    button, .delete-button {
        font-size: 20px;
        padding: 18px;
    }
}