body {
    background-color: #201b2c;
    font-family: 'Noto Sans', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin-top: 50px;
}

.container {
    background-color: #2a243b;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 900px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px; /* Espaço entre a borda superior do contêiner e a navbar */
}

h1, h2 {
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.content {
    display: flex;
    width: 90%;
    align-items: flex-start;
}

.image-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    text-align: center;
    color: #ccc;
    margin-right: 20px;
    margin-top: 15px;
}

.image-upload input {
    display: none;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.upload-icon {
    font-size: 50px;
}

.create-button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#create-button {
    background-color: #1a82b7;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#create-button:hover {
    background-color: #45a049;
}

.form-fields {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-fields label {
    color: #ccc;
    margin-bottom: 5px;
}

.form-fields input,
.form-fields textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
}

.form-fields textarea {
    resize: vertical;
    min-height: 100px;
}

#save-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#save-button:hover {
    background-color: #45a049;
}

.table-container {
    width: 80%;
    max-width: 900px;
    margin-top: 20px;
    background-color: #2a243b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.table-container h1 {
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px; /* Bordas arredondadas */
    overflow: hidden;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: center; /* Centralizar textos */
    color: #fff;
}

th {
    background-color: #3b324e;
}

td img {
    max-width: 100px;
    border-radius: 5px;
}

