
.character_create, .character_update {
    margin: 20px auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.return-home {
    display: block;
    margin-bottom: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.return-home:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-update-image {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.form-update-image img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgb(255, 28, 28);
  
}


.form-input:focus {
    border-color: #666;
    outline: none;
}

.file-input {
    background: #fff;
    padding: 8px;
}

.quote-list .quote-block {
}

.quote-list textarea,
.quote-list input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    resize: vertical;
}

.quote-list textarea {
    height: 150px;
}

.quote-list .delete-quote-btn {
    background: #dc3545;
    color: white;
    padding: 7px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: background 0.2s ease-in-out;
}

.submit-button {
    width: 100%;
    background: #28a745;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.submit-button:hover {
    background: #218838;
}
