


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif; /* Use Montserrat font */
}


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0; /* Remove default body margin */
    font-family: 'Montserrat', sans-serif; /* Existing font */
}

.container {
    flex: 1; /* This allows the main content to grow and push the footer down */
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
        .error { color: red; }
        .success { color: green; }
        .image-list { margin-top: 20px; }
        .image-item { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        margin-bottom: 10px; 
        padding: 10px; 
        border: 1px solid #ddd; 
    }
    
    .image-details {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .image-preview {
        max-width: 100px;
        max-height: 100px;
        margin-left: 20px;
    }
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ddd;
        }

        
        .footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 14px;
        }
        
        .footer .heart {
            color: red;
        }

        .upload-btn {
            background: #4CAF50;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
        }

        .image-details {
            flex-grow: 1;
        }

        .image-preview {
        width: 100px;
        height: 100px;
        border: 1px solid #ddd; 
        border-radius: 5px; 
        background-color: #f0f0f0; 
    }

    nav {
    background-color: #333;
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-logo a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

.navbar-links {
    list-style: none;
    display: flex;
}

.navbar-links li {
    margin-left: 20px;
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar-links a:hover {
    color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-links {
        flex-direction: column;
        margin-top: 10px;
    }

    .navbar-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }

}