
/* styles.css */

@font-face {
  font-family: "Vazir";
  src: url("/static/fonts/Vazir.woff") format("woff"); ;
  /* Add additional formats if necessary */
}
.message-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    direction: rtl;
  }
  
  /* button{ */
    /* font-family: "Vazir"; */
    /* font-size: 14px; */
  /* } */

  .message-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: right;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: pre-wrap;
  }
  
  .hidden {
    display: none;
  }
  
  #buttonContainer {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    
  }
  
  #buttonContainer button {
    width: 80px; 
    height: 40px; 
    padding: 5px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: "Vazir";
  }
  
  #buttonContainer button:hover {
    opacity: 0.8;
  }
  
  /* Default fallback colors if no dynamic color is applied */
  #buttonContainer button.default {
    background-color: #007bff;
  }
  
  #buttonContainer button.default:hover {
    background-color: #0056b3;
  }
  
