.celecom-create-event {
    text-align: center;
    margin: 20px;
}
.subuser-details {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.profile-photo-wrapper {
    position: relative;
    display: inline-block;
}
.round-profile-picture {
    border-radius: 50%;
    width: 128px;
    height: 128px;
    object-fit: cover;
    margin-top: -15px; /* Updated */
    margin-left: 13px; /* Updated */
}
.round-profile-picture.grayscale {
    /* filter: grayscale(100%); */
}
.admin-profile-picture {
    position: absolute;
    top: -10px; /* Updated */
    left: -10px; /* Updated */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid white; /* Add a white border */
}
.celecom-create-event form {
    display: inline-block;
    text-align: center; /* Updated */
    max-width: min-content; /* Updated */
}
.celecom-create-event form p {
    text-align: center;
}
.celecom-create-event form input[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.celecom-create-event form input[type="submit"]:hover {
    background-color: #005177;
}
.celecom-create-event button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.celecom-create-event button:hover {
    background-color: #005177;
}
.celecom-create-event select, .celecom-create-event input[type="text"], .celecom-create-event textarea {
    width: 300px;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
    text-align: left;
}
/* jQuery UI Datepicker Style */
.ui-datepicker {
    background: #0073aa;
    border: 1px solid #555;
    color: #ffffff;
}


.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; /* Updated */
    color: #1d5a6e; /* Blue text color */
    text-align: center;
    white-space: nowrap; /* Prevent text from wrapping within the tag */
}
.suggestion-tag:hover {
    background-color: #b3e0ff; /* Slightly darker blue on hover */
}
.button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.share-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.share-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.share-button svg {
    width: 20px;
    height: 20px;
    stroke: #333;
}