

#uploadButton{
    width: 200px;
    border-radius: 20px;
    background-color: #A87C6F;
}


#uploadButton:hover {
    transform: scale(1.05);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    background: #a3928d; /* Enyhén sötétebb háttér hover esetén */
}

#category{
    width: 300px;
}

#uploadDiv{
    display: flex;
    justify-content: center;
}

#upLogo{
    background-color: white;
    border: none;
    box-shadow: none;
}

#upLogoCentering{
    display: flex;
    justify-content: center;
}

.message {
    padding: 12px;
    margin: 15px 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 80%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 6px solid #28a745;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 6px solid #dc3545;
}