.hidden {
  display: none !important;
}

.pull-right {
  float: right;
}

.time-slot {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
    user-select: none;
}

.time-slot:hover {
    border-color: #5d87ff;
}

.time-slot.active {
    background: #5d87ff;
    color: #fff;
    border-color: #5d87ff;
}

.time-slot.disabled {
    background: #f1f3f5;
    color: #999;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.8;
}

.time-slot.disabled:hover {
    border-color: #ddd;
}

.time-slot small {
    display: block;
    font-size: 11px;
    margin-top: 2px;
}

@media print {

    body * {
        visibility: hidden;
    }

    #printArea,
    #printArea * {
        visibility: visible;
    }

    #printArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    /* buton vs gizle */
    .btn,
    .breadcrumb,
    .card-header,
    form {
        display: none !important;
    }
}