﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
/*table employee*/
.uppertabemp .btn {
    width: 300px !important;
}
.uppertabemp {
    display: flex !important;
    justify-content: space-between;
    margin: 0 50px;
}
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* تصميم الرسالة */
.tooltip .tooltip-text {
    visibility: hidden;
    width: 150px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* فوق العنصر */
    left: 50%;
    margin-left: -75px; /* نصف العرض */
    opacity: 0;
    transition: opacity 0.3s;
}

    /* السهم */
    .tooltip .tooltip-text::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

/* ظهور الرسالة عند التحويم */
.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}