/* Estilo para o formulário de criaturas */
.creature-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.creature-form-wrapper label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: inherit;
}

.creature-form-wrapper input[type="text"],
.creature-form-wrapper textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #eef2f5; /* Alterado */
    color: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.creature-form-wrapper input[type="file"] {
    margin-top: 5px;
    margin-bottom: 15px;
}

.creature-form-wrapper input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.creature-form-wrapper input[type="submit"]:hover {
    background-color: #005f8d;
}

.notice {
    background-color: #dff0d8;
    border: 1px solid #d0e9c6;
    color: #3c763d;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Estilo para a lista de criaturas */
.creature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.creature-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.creature-item h4 {
    margin: 10px 0;
}

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