﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans Arabic", sans-serif;


    /* Disable text selection */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
    outline: none !important;
}

html {
    height: 100vh;
}

body {
    /* background-color: #f5f5f5; */
    background-color: #e8e8e8;
    color: #333;
    line-height: 1.6;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
    direction: rtl;
}

.hide-element {
    display: none;
}