body {
    font-family: Arial, Helvetica, sans-serif;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 60%; /* removed important to make the width common. please use a parent class to modify modal-content width */
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 0.3rem;
    outline: 0;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


.birthdays-list {
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 26.5rem;
    overflow: auto;
}

.birthdays-list li {
    border: 1px solid #ccc;
    padding-bottom: 0px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    background: #f2f2f2;
}

.birthdays-list li a {
    margin-right: 10px;
}

.birthdays-list li .birthday-item-content {
    font-size: 1rem;
}

.birthdays-list li .badge-primary {
    background: transparent url('/wp-content/plugins/v2connect-backstage/css/../images/birthdate.svg') no-repeat;
    color: #000;
    width: 100%;
    text-align: left;
    padding: 0;
    background-size: 19px;
    font-size: 0.8rem;
    line-height: inherit;
    padding-left: 25px;
    border-radius: 0;
}

