img {
  max-width: 100%;
  height: auto;
}
.rooster {
    position: relative;
    display: inline-block;
}

.rooster-img {
    display: block;
    width: 260px; /* przykładowo */
}
.sidebar-brand .rooster {
  max-width: 100%;
  min-width: 130px;
}
.eye {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    overflow: hidden;

    top: 101px;
    left: 103px;
    background-color: #fff;
    border: 3px solid #c0092d;
    box-sizing: content-box;
}
.sidebar-brand .eye {
    top: 82px;
    left: 85px;
    width: 11px;
    height: 11px;
}
.pupil {
    width: 10px;
    height: 10px;
    background: #c0092d;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;

    transition: transform 0.05s linear;
}

.fc-task-event {
    border: 0;
}

.fc-task-status-new {
    background: #6c757d !important;
}

.fc-task-status-in_progress {
    background: #0d6efd !important;
}

.fc-task-status-waiting_client {
    background: #ffc107 !important;
    color: #212529 !important;
}

.fc-task-status-completed {
    background: #198754 !important;
}

.fc-task-status-cancelled {
    background: #dc3545 !important;
}

.fc-block-type-meeting {
    background: #6610f2 !important;
    border-color: #6610f2 !important;
}

.fc-block-type-private {
    background: #fd7e14 !important;
    border-color: #fd7e14 !important;
}

.fc-block-type-vacation {
    background: #20c997 !important;
    border-color: #20c997 !important;
}

.fc-block-type-sick {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
}

.crm-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.crm-modal.is-open {
    display: block;
}

.crm-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.crm-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    margin: 16px auto;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 32px);
}

.crm-modal-content {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.crm-modal-header,
.crm-modal-footer {
    padding: 16px;
    border-bottom: 1px solid #dee2e6;
}

.crm-modal-footer {
    border-bottom: 0;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.crm-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crm-modal-header h5 {
    margin: 0;
}

.crm-modal-body {
    padding: 16px;
    overflow: auto;
}

body.crm-modal-open {
    overflow: hidden;
}