/*Hər Hansı Kodu Götürən.....
 Oğurlayan Peysərdir.........
İmza: By.AL!K / MobKlik.Biz*/


:root {
  --primary: #2caad3;
  --primary-dark: #197a97;
  --accent: #6f40bd;
  --text: #333;
  --bg: #f9f9f9;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --transition: .25s ease;
  --input-bg: #fff;
  --input-border: #d7d7d7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  color: var(--text);
  padding: 10px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}


.popup-overlay{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,0.5);
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:9999;
      padding:20px;
    }
   
.popup-box{
      width:100%;
      max-width:520px;
      background:#fff;
      border-radius:12px;
      box-shadow:0 10px 30px rgba(0,0,0,0.25);
      position:relative;
      padding:22px;
      font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
    }
    .popup-box h2{ margin:0 0 10px; font-size:20px; }
    .popup-box p{ margin:0 0 18px; line-height:1.45; color:#333; }
    
.popup-close{
      position:absolute;
      right:12px;
      top:10px;
      width:36px;height:36px;
      border-radius:50%;
      border:0;
      background:transparent;
      font-size:20px;
      cursor:pointer;
      line-height:1;
    }
    /* Moded by: By.AL!K*/
    .hidden{ display:none !important; }

    
    @media (max-width:420px){
      .popup-box{ padding:16px; border-radius:10px; }
      .popup-box h2{ font-size:18px; }
    }




.alikem {
    background: #ffffff;
    border: 1px solid #1e2d3d;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    color: #000000;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.alikem b {
    color: #3ee98d;
}

.alikem a {
    color: #55c8ff;
    text-decoration: none;
    font-weight: bold;
}

.alikem a:hover {
    text-decoration: underline;
}



.wa-icon-btn{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  transition:0.25s;
  z-index:9999;
}
.wa-icon-btn img{
  width: 30px;
  height: 30px;
}
.wa-icon-btn:hover{
  transform: scale(1.12);
}


/* Moded by: By.AL!K */
a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--primary-dark);
}

/* Images */
img {
  max-width: 100%;
  border-radius: var(--radius);
}

h1, h2, h3, h4, h5 {
  margin-bottom: 6px;
  font-weight: 500;
}

/* ------------------------------
   INPUTS
------------------------------ */
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44,170,211,0.2);
}

/* TEXTAREA */
textarea {
  min-height: 120px;
  resize: vertical;
}

/* CHECKBOX */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

/* ------------------------------
   BUTTONS
------------------------------ */
button,
input[type="button"],
input[type="submit"] {
  background: var(--primary);
  border: none;
  padding: 10px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow);
}

button:active {
  transform: scale(.97);
}

/* SPECIAL ALT BUTTON */
.btn-alt {
  background: var(--accent);
}
.btn-alt:hover {
  background: #58319a;
}


.box {
  background: #fff;
  padding: 7px;
  margin: 3px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.title {
  background: var(--accent);
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: var(--radius);
  margin-bottom: 8px;
}

/* ------------------------------
   MENUS
------------------------------ */
.navbar {
  background: var(--primary);
  color: #fff;
  padding: 10px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 10px;
}
.navbar a {
  color: #fff;
  padding: 8px 14px;
  display: inline-block;
  border-radius: var(--radius);
}
.navbar a:hover {
  background: rgba(255,255,255,0.15);
}

/* LIST ITEMS */
.list {
  background: #fff;
  padding: 12px;
  border-radius: var(--radius);
  margin-bottom: 8px;
  box-shadow: var(--shadow);
}

.badge {
  background: red;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
}

/* ------------------------------
   UTILS
------------------------------ */
.center { text-align: center; }
.left   { float: left; }
.right  { float: right; }

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}



.tab_t{ background-color: #f7f5f5; border: 1px solid #cc9595; 	font-size: 11px; padding: 5px; } 
.tab_r{ background-color: #fff; border: 1px solid #cecece; 	font-size: 11px; padding: 5px; color : #0000ff; } 




/* ------------------------------
   NEW HEADER
------------------------------ */
.header {
  background: var(--primary);
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 200;
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}

/* ------------------------------
   ICON PANEL
------------------------------ */
.icon-bar {
  display: flex;
  justify-content: space-around;
  margin: 12px 0;
  padding: 12px 0;
}

.icon-item {
  text-align: center;
}

.icon-item img {
  width: 48px;
  height: 48px;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.icon-item img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.icon-item span {
  display: block;
  font-size: 13px;
  margin-top: 4px;
  color: var(--text);
}


.footer {
  margin-top: 20px;
  padding: 18px;
  background: #fff;
  text-align: center;
  color: #666;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: var(--shadow);
}

.footer a {
  color: var(--primary);
  font-weight: 600;
}