html {
  font-size: 14px;
}

/* load Uthmani Hafs font */
@font-face {
    font-family: 'KFGQPC Hafs';
    src: url('/fonts/KfgqpcHafsUthmanicScriptRegular-nARZ1.ttf') format('truetype');
    font-display: swap;
}

@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;
}

.chat-box {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 320px;
    height: 400px;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.chat-header {
    font-weight: bold;
    font-size: 1rem;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    background: #f0f2f5;
}

.chat-message {
    margin: 8px 0;
    padding: 6px 10px;
    border-radius: 12px;
    max-width: 80%;
    display: inline-block;
    clear: both;
}

    .chat-message.self {
        background-color: #dcf8c6;
        float: right;
        text-align: right;
    }

    .chat-message.other {
        background-color: #fff;
        border: 1px solid #ddd;
        float: left;
    }

.chat-input-area {
    border-top: 1px solid #ccc;
}

.chat-time {
    font-size: 0.7rem;
    color: gray;
    display: block;
    margin-top: 2px;
}

#chatBadge {
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background-color: red;
    color: white;
    border-radius: 50%;
    display: none;
}
