.celecom-edit-event {
    text-align: center;
    margin: 20px;
}

.celecom-edit-event form {
    display: inline-block;
    text-align: center;
    max-width: min-content;
    width: 100%;
}

.celecom-edit-event form p {
    text-align: center;
}

/* Subuser details styling */
.celecom-edit-event .subuser-details {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.celecom-edit-event .profile-photo-wrapper {
    position: relative;
    display: inline-block;
}

.celecom-edit-event .round-profile-picture {
    border-radius: 50%;
    width: 128px;
    height: 128px;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    cursor: pointer;
}

/* Admin Profile Picture styling */
.celecom-edit-event .admin-profile-picture {
    position: absolute;
    top: -10px; /* Adjusted for top-left positioning */
    left: -10px; /* Adjusted for top-left positioning */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid white; /* White border for better visibility */
}

/* Button Group Styling */
.celecom-edit-event .button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Button Styles */
.celecom-edit-event button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.celecom-edit-event button:hover {
    background-color: #005177;
}

.celecom-edit-event .button-primary {
    background-color: #0073aa;
    color: #ffffff;
}

.celecom-edit-event .button-primary:hover {
    background-color: #005177;
}

.celecom-edit-event .button-secondary {
    background-color: #f1f1f1;
    color: #000000;
}

.celecom-edit-event .button-secondary:hover {
    background-color: #e1e1e1;
}

.celecom-edit-event .button-delete {
    background-color: #d9534f;
    color: #ffffff;
}

.celecom-edit-event .button-delete:hover {
    background-color: #c9302c;
}

/* Form Elements Styling */
.celecom-edit-event form input[type="text"],
.celecom-edit-event form select,
.celecom-edit-event form textarea {
    width: 300px; /* Adjust form input widths */
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    text-align: left; /* Align text inside inputs to the left */
}

.celecom-edit-event form input[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.celecom-edit-event form input[type="submit"]:hover {
    background-color: #005177;
}

/* Suggestion Tags */
.celecom-edit-event .suggestion-tag {
    display: inline-block;
    background-color: #e0f7ff; /* Light blue background */
    border: 1px solid #00bfff; /* Blue border */
    border-radius: 15px; /* Rounded corners */
    padding: 5px 10px; /* Padding inside the tag */
    margin: 5px; /* Margin around each tag */
    cursor: pointer;
    font-size: 12px; /* Small tag text */
    color: #1d5a6e; /* Blue text color */
    text-align: center;
    white-space: nowrap; /* Prevent wrapping */
}

.celecom-edit-event .suggestion-tag:hover {
    background-color: #b3e0ff; /* Slightly darker blue on hover */
}
.celecom-edit-event form textarea {
    width: 300px;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    text-align: left;
}