.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.centered-content {
    text-align: center;
}

.message {
    flex: 1;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-color: #f2f2f2;
    padding: 10px;
    border-radius: 5px;
}

.column {
   display: block;
   margin-bottom: 10px; /* Odstęp między wierszami */
   background-color: #f2f2f2;
}    

.colorId {
    background-color: #f2f2f2;
}

table {
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
}

form {
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    flex: 1;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="file"] {
    flex: 2;
    margin-bottom: 10px;
}

.btn {
    display: inline;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    height: 40px;
}

.btn-green {
    background-color: #4CAF50;
}

.btn-green2 {
    position: fixed;
    top: 20px;
    left: 40%;
    background-color: #4CAF50;
}

.btn-green3 {
    position: fixed;
    top: 20px;
    left: 50%;
    background-color: #4CAF50;
}

.btn:hover {
    background-color: #45a049;
}