#actDialog, #shiftDialog, #freeformDialog {
    background-color: #f9f9f9;
    color: #333;
    font-family: Arial, sans-serif;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#actDialog h2, #shiftDialog h2, #freeformDialog h2 {
    margin-top: 0;
    color: #2e6e9e;
    font-size: 24px;
    text-align: center;
}

#actDialog h3.hosts-label, #shiftDialog h3.hosts-label, #freeformDialog h3.hosts-label {
    margin-top: 0;
    color: #2e6e9e;
    font-size: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#actDialog h3.hosts-label:before, #shiftDialog h3.hosts-label:before, #freeformDialog h3.hosts-label:before,
#actDialog h3.hosts-label:after,  #shiftDialog h3.hosts-label:after,  #freeformDialog h3.hosts-label:after  
{
    content: "";
    position: absolute;
    top: 50%;
    width: 50%;
    height: 1px;
    background-color: #ddd;
}

#actDialog h3.hosts-label:before, #shiftDialog h3.hosts-label:before, #freeformDialog h3.hosts-label:before {
    right: 100%;
    margin-right: 15px;
}

#actDialog h3.hosts-label:after, #shiftDialog h3.hosts-label:after, #freeformDialog h3.hosts-label:after {
    left: 100%;
    margin-left: 15px;
}

#actDialog .section, #shiftDialog .section, #freeformDialog .section {
    border: 1px solid #2e6e9e;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #d3e9ff;
}

#actDialog .row, #shiftDialog .row, #freeformDialog .row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

#actDialog label, #shiftDialog label, #freeformDialog label {
    font-weight: bold;
    color: #2e6e9e;
    font-size: 16px;
}

#actDialog span, #shiftDialog span, #freeformDialog span {
    color: #666;
    font-size: 16px;
}

#actDialog .host, #shiftDialog .host, #freeformDialog .host {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
    border: 1px solid #2e6e9e;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
}

.fc-event{
    cursor: pointer;
}