.brand-edit-container {
    max-width: 900px;
    margin: 0 auto;
}

.brand-edit-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.brand-edit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.brand-edit-title {
    font-size: 1.75rem;
    font-weight: 600;
}

.brand-edit-btn-return {
    background-color: #e9e9e9;
    color: #555;
    text-decoration: none;
    display: inline-block;
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, transform 0.2s;
}

.brand-edit-btn-return:hover {
    background-color: #e74c3c;
    color: white;
}

.brand-edit-card-body {
    padding: 20px;
    background-color: #ffffff;
}

.brand-edit-form-group {
    margin-bottom: 20px;
}

.brand-edit-label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.brand-edit-input {
    background-color: #e8f5e9;
    border: 1px solid #c0c0c0;
    border-radius: 6px;
    padding: 10px;
    color: #333;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.brand-edit-input:focus {
    border-color: #67a36a;
    box-shadow: 0 0 6px rgba(103, 163, 106, 0.4);
    outline: none;
}

.brand-edit-btn-container {
    text-align: right;
}

.brand-edit-btn-update {
    background-color: #7aa37a;
    color: white;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    border: none;
}

.brand-edit-btn-update:hover {
    background-color: #1e7e34;
    transform: scale(1.05);
}

.brand-edit-img-thumbnail {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-top: 15px;
    margin-left: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.brand-edit-file-input {
    margin-top: 10px;
}