

/* تصميم الحاوية */
.container {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-family: "Lalezar", sans-serif;
  }
  

  
  /* تصميم النتائج */
  .result {
    font-size: 20px;
    font-weight: bold;
    color: white;
    line-height: 1.5; /* لتحسين الفصل بين السطور */
  }

  .btn-size {
    width: 12em;
    position: relative;
    height: 3.5em;
    border: 3px ridge #149CEA;
    outline: none;
    background-color: transparent;
    color: white;
    transition: 1s;
    border-radius: 0.3em;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn-size::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #212121;
    transition: 0.5s;
    transform-origin: center;
  }
  
  .btn-size::before {
    content: "";
    transform-origin: center;
    position: absolute;
    top: 80%;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #212121;
    transition: 0.5s;
  }
  
  .btn-size:hover::before, .btn-size:hover::after {
    transform: scale(0)
  }
  
  .btn-size:hover {
    box-shadow: inset 0px 0px 25px #1479EA;
  }


  /* styles.css */

  #fullscreenBtn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#fullscreenBtn:hover {
    background-color: #2980b9;
}


.p-tekrar {
  padding: 0;
  margin: 0;

}






/* إخفاء الرابط افتراضيًا */
#desktopOnlyLink {
  display: none;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;

}

/* تغيير اللون عند التمرير */
#desktopOnlyLink:hover {
  background-color: #2980b9;
}