:root {
  --main-color: #1e90ff;
  --progress-color: #1e90ff;
  --bg: var(--bg);
  --border: #E5E9F2;
  --top-bg: rgba(255, 255, 255, 0.575);
  --text-color: #222;
  --surface: #FFFFFF;
  --surface2: #EFF2F8;
  --correct: #e5f7ec;
  --wrong: #fae9e7;
}
body.dark-theme {
  --main-color: #1e90ff;
  --progress-color: #1e90ff;
  --bg: #0F1117;
  --border: #2A2F42;
  --top-bg: #0F1117;
  --text-color: #fff;
  --surface: #1A1D27;
  --surface2: #232736;
  --correct: #1a2720;
  --wrong: #271c1a;
}
body.premium-aktiv {
    --progress-color: linear-gradient(90deg, #1e90ff, #6B48FF);
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--bg);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
input {
    border: 2px solid #4a90e2;
    border-radius: 25px;
    padding: 10px;
    font-size: 18px;
    transition: 0.3s ease;
    width: 100%;
    margin: 0;
    background-color: var(--surface);
    color: var(--text-color);
}
input:focus {
    border: none;
}
button {
    background-color: #1e90ff;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    display: flex;
    gap: 6px;
    padding: 12px 35px;
    justify-content: center;
    height: 44px;
    height: auto;
}

.top-bar {
    height: 60px;
    width: 100%;
    background: var(--surface);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    display: flex;
    position: fixed;
    margin: 0;
    align-items: center;
    z-index: 100;
}
.logo {
    width: 20%;
}
.logo img {
    width: 200px;
}
#premium-href {
    display: flex;
    justify-content: center; /* Əgər içindəki element sabit (fixed) olmasaydı bu işə yarayardı */
}

.premium {
    height: 40px;
    min-width: 60px;
    border-radius: 49px;
    background: linear-gradient(90deg, #1e90ff, #6B48FF); 
    display: flex;
    align-items: center;
    align-self: center;
    padding-right: 20px;
    padding-left: 15px;
    gap: 3px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}
.premium:hover {
    box-shadow: 0 3px 15px rgba(0, 123, 255, 0.5);
}
.premium img {
    width: 15px;
    filter: invert(1);
}
.premium p {
    font-size: 14px;
    font-weight: bold;
    color: hsl(216, 100%, 94%);
}
.profile-bg {
    display: flex;
    right: 10px;
    position: fixed;
}
.profile-bg img {
    width: 40px;
}
/* Arxa planın qaralması və mərkəzləşdirmə */
.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px); /* Arxa planı yüngül bulandırır */
    z-index: 3000;
    display: flex; /* Flex vasitəsilə tam mərkəzə gətiririk */
    justify-content: center;
    align-items: center;
}

/* Mesaj qutusu */
.message-bar {
    background-color: var(--surface, #ffffff);
    color: var(--text-color, #000000);
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid #1e90ff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 350px;
    text-align: center;
    z-index: 3100;
    transform: translateY(-20px);
    animation: slideDown 0.3s forwards ease-out;
}

@keyframes slideDown {
    to { transform: translateY(0); }
}

#messageText {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.message-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

/* Düymələrin ümumi dizaynı */
.message-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#okBtn {
    background-color: #1e90ff;
    color: white;
}
#okBtn:hover { background-color: #107ae6; }

#confirmBtn {
    background-color: #ff4d4d; /* Təsdiq düyməsi diqqət çəksin deyə qırmızı/göy ola bilər */
    color: white;
}
#confirmBtn:hover { background-color: #d43f3f; }

#cancelBtn {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid #ccc;
}
#cancelBtn:hover { background-color: rgba(0,0,0,0.05); }

.action-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 2500;
    display: flex; justify-content: center; align-items: center;
}

.action-modal {
    background-color: var(--surface, #ffffff);
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid #1e90ff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 90%; 
    max-width: 420px;
    animation: slideDown 0.3s forwards ease-out;
    text-align: center;
}

.action-modal h2 { 
    margin-bottom: 25px; 
    font-size: 22px; 
    color: var(--text-color); 
}

.action-modal .input-group { 
    margin-bottom: 18px; 
    text-align: left; 
}

.action-modal .input-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 700; 
    font-size: 14px; 
    color: var(--text-color);
}

.action-modal .input-group input {
    width: 100%; 
    box-sizing: border-box; 
    padding: 14px;
    border: 1px solid rgba(30,144,255,0.4); 
    border-radius: 10px;
    font-size: 15px; 
    outline: none; 
    background: transparent; 
    color: var(--text-color);
}

.action-modal .input-group input:disabled { 
    background: rgba(0,0,0,0.03); 
    color: #888; 
}

.action-buttons { 
    display: flex; 
    justify-content: space-between; 
    margin-top: 30px; 
    gap: 15px; 

}

.action-buttons button {
    flex: 1; 
    padding: 14px; 
    border: none; 
    border-radius: 10px;
    font-weight: 700; 
    font-size: 15px;
    cursor: pointer; 
    transition: 0.3s ease;
}

.btn-cancel { 
    background: transparent; 
    border: 1px solid var(--text-color); 
    color: var(--text-color);
    opacity: 0.7;
}

.btn-cancel:hover { opacity: 1; }

.btn-continue { 
    background: #1e90ff; 
    color: white; 
}

.btn-continue:hover { background: #107ae6; }

.verify-email-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: rgba(30,144,255,0.08); 
    padding: 14px 18px; 
    border-radius: 10px; 
    margin-bottom: 25px; 
    border: 1px dashed rgba(30,144,255,0.4); 
}

.verify-email-row span { 
    font-weight: 700; 
    color: var(--text-color); 
}

.verify-email-row button { 
    background: none; 
    border: none; 
    color: #1e90ff; 
    font-weight: 700; 
    cursor: pointer; 
}

.otp-container { 
    display: flex; 
    gap: 10px; 
    justify-content: center; 
    margin-bottom: 25px;
}

.otp-container input {
    width: 45px; 
    height: 55px; 
    text-align: center; 
    font-size: 24px; 
    font-weight: 700;
    border: 1px solid rgba(30,144,255,0.4); 
    border-radius: 10px; 
    outline: none;
    background: transparent; 
    color: var(--text-color);
    padding: 0;
}

.otp-container input:focus { 
    border-color: #1e90ff; 
    box-shadow: 0 0 0 3px rgba(30,144,255,0.15); 
}
/* ==============================
   PROFILE STYLES
============================== */
.profile-container, .giris-container {
    width: 100%;
    height: 100vh;
    max-width: 600px;
    background-color: var(--surface);
    padding: 35px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.profile-header h1, .giris-header h1 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.profile-header p, .giris-header p {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 35px;
}

.profile-form, .giris-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Input və düyməni birlikdə tutan konteyner */
.input-wrapper {
    position: relative;
    width: 100%;
}

/* Düymənin yazının üstünə çıxmaması üçün inputun sağ tərəfinə boşluq veririk */
.input-wrapper input {
    width: 100%;
    box-sizing: border-box;
    padding-right: 65px; /* Düymə üçün sağda yer saxlayır */
}

/* Düyməni inputun daxilinə (sağ mərkəzə) yerləşdiririk */
.input-wrapper .btn-change {
    position: absolute;
    display: flex;
    align-items: center;
    right: 15px;
    top: 50%;
    transform: translateY(-50%); /* Şaquli olaraq tam mərkəzə gətirir */
    background: transparent;
    border: none;
    color: #1e90ff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.input-wrapper .btn-change:hover {
    color: #107ae6;
    text-decoration: underline;
}

.input-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}

.input-group input {
    box-sizing: border-box;
    border-radius: 15px;
    font-size: 16px;
    background-color: transparent;
    color: var(--text-color);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus {
    border:2px solid var(--main-color);
}

.profile-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}
.abunelik-bg, .premium-abunelik-bg {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 2px solid var(--main-color);
    border-radius: 15px;
    justify-content: space-between;
}
.premium-abunelik-bg {
    display: flex;
    flex-direction: column;
}
.abunelik-top, .abunelik-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#premium-text {
    background: linear-gradient(90deg, #1e90ff, #6B48FF);
    display: flex;
    align-items: center;
    height: 36px;
    transform: skew(-20deg);
    margin-right: 5px;
    border-top-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
#premium-text p {
    padding-right: 20px;
    padding-left: 20px;
    transform: skew(20deg);
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
}
#bitme-tarixi {
    margin-right: 10px;
}
.giris-buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    align-items: center;
    box-sizing: border-box;
    padding-right: 10px;
    padding-left: 10px;
}
.giris-buttons button {
    height: 44px;
}
.donthaveac, .haveac {
    display: flex;
    align-items: center;
}
.donthaveac a, .haveac a {
    text-decoration: none;
    color: #1e90ff;
}

.action-buttons-lod {
    display: flex;
    gap: 15px;
}

.btn-save {
    padding: 12px 28px;
    background-color: var(--surface);
    color: var(--text-color);
    border: 1px solid var(--main-color);
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-save:hover {
    background-color: var(--main-color);
    color: white;
}

.btn-logout {
    padding: 12px 20px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.btn-logout:hover {
    opacity: 1;
}

.btn-delete {
    padding: 12px 20px;
    background-color: transparent;
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-delete:hover {
    background-color: #ff4d4d;
    color: white;
}

/* ==============================
   LEFT MENU STYLES
============================== */
#abituriyent-header {
    margin-top: 40px;
}
#telebe-header {
    margin-top: 10px;
}

#abituriyent-header, #telebe-header {
    cursor: default;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
}
#abituriyent-menu {
    padding-left: 10px;
}
#telebe-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#telebe-menu.open, #abituriyent-menu.open {
    margin-top: 10px;
    padding-left: 10px;
}
#menu-toggle {
    position: absolute;
    top: 0;
    left: -10px;
    z-index: 999
}

#menu-toggle img {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    margin-top: -4px;
}

#menu-bar {
    position: fixed;
    height: 100vh;
    width: 210px;
    margin-top: 61px;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--surface); 
    border-right: 1px solid var(--border);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 10px 20px;
}

.menu-btn-bg {
    display: none;
}
#menu-bar a, #menu-btn {
    display: none;
}

#menu-bar ul {
    list-style: none;
    margin: 10% 0 0;
    padding: 0;
    text-align: center;
    margin-top: 5px;
}
#menu-bar li {
    margin-bottom: 10px
}

#menu-bar a:not(#name-text) {
    display: block;
    width: 100%;
    padding: 5px 0;
    color: var(--text-color);
    text-align: left;
    font-size: 18px;
    transition: background-color .3s, transform .2s;
    box-sizing: border-box;
    text-decoration: none;
    border-bottom: 1px solid #E5E9F2;
}
body.dark-theme #menu-bar a:not(#name-text) {
    border-bottom:1px solid #2A2F42;
}

#menu-bar a:hover {
    transform: scale(1.02)
}
/* Həm abituriyent, həm də tələbə menyusuna aid ortaq xüsusiyyətlər */
#abituriyent-menu, #telebe-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out; /* 0.4 saniyəlik sürüşmə animasiyası */
  display: flex;
  flex-direction: column; /* Elementləri alt-alta düzürük */
  margin: 0;
  padding-left: 15px; /* Səliqəli görünməsi üçün boşluq */
}

/* Menyu açılanda işə düşəcək sinif */
#abituriyent-menu.open, #telebe-menu.open {
  max-height: 400px; /* Menyunun içindəkilərin hündürlüyündən böyük bir rəqəm */
}
/* ==============================
   PREMIUM PLANS GRID STYLES
============================== */

/* Grid Container - fənn kartlarındakı kimi responsiv */
.plans-grid {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: stretch;
    padding-bottom: 20px;
    margin-top: 5px;
}

/* Plan Kartı - subject-card ilə eyni dizayn */
.plan-card {
    background-color: var(--surface); /* Dark mode üçün səth rəngi */
    border-radius: 15px; /* Sizin fənn kartlarındakı kənar yumruluğu */
    border: 1px solid #1e90ff; /* Sizin fənn kartlarındakı göy xətt */
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover Effekti - tamamilə subject-card:hover kimidir */
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background-color: #1e8fff0c;
}

/* Tövsiyə edilən kartın xüsusi fərqlənməsi */
.plan-card.recommended {
    border-width: 2px;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e90ff;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

/* İçərik - Mətnlər */
.plan-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 10px; /* Badge üçün boşluq */
}

.plan-price {
    font-size: 28px;
    color: #1e90ff; /* Fənn kartlarındakı əsas vurğu rəngi */
    font-weight: 800;
    margin: 10px 0;
}

.plan-price span {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: normal;
}

.plan-desc {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 15px;
    min-height: 40px;
}

/* Xüsusiyyətlər siyahısı */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1; /* Düyməni kartın ən aşağısına itələyir */
    text-align: left;
}

.plan-features li {
    font-size: 13px;
    color: var(--text-color);
    padding: 8px 0;
    border-bottom: 1px dashed rgba(30, 144, 255, 0.3); /* Yüngül göy xətt */
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Düymələr */
.btn-plan {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px; /* Sizin icon-lardakı (44px) yumruluğa uyğun */
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-plan-current {
    background-color: rgba(30, 144, 255, 0.1);
    color: #1e90ff;
    cursor: not-allowed;
}

.btn-plan-active {
    background-color: #1e90ff;
    color: white;
    cursor: pointer;
}

.btn-plan-active:hover {
    background-color: #107ae6;
}
.theme-mode {
    display: flex;
    position: fixed;
    right: 45px;
}
.theme-mode button {
    width: 48px;
    background-color: transparent;
}
#theme-img {
    width: 28px;
    height: 28px;
    margin-top: 1px;
}
body.dark-theme #theme-img {
    filter: invert(0);
}
body.dark-theme #report img {
    filter: invert(1);
}
.main-background {
    min-height: 100vh;
    width: 100%;
    padding-top: 60px;
    display: flex;
    justify-content: center;
    background-color: var(--bg);
}

.main-content {
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 250px;
}
.header-bg {
    margin-top: 20px;
}
.header-bg, .infotext-bg {
    width: 70%;
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    max-width: 700px;
}
.search-bg {
    width: 70%;
    max-width: 700px;
    background-color: var(--bg);
    gap: 20px;
    padding: 20px;
    display: flex;
     justify-content: space-between;
    align-items: center;
}
.movcud-fenn-bg {
    width: 95%;
    display: flex;
    justify-self: left;
}
.contact-section a {
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #107ae6;
    text-decoration: underline;
}
.site-footer {
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent;  
    text-align: center;
    font-family: sans-serif;
    font-size: 14px;
    margin-left: 220px;
}
  

.site-footer p:first-child {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.site-footer a {
  color: #0077cc;
  text-decoration: none;
  margin: 0 5px;
}

.site-footer a:hover {
  text-decoration: underline;
}
/* ==============================
   SUBJECT GRID STYLES
============================== */
#ahref {
    text-decoration: none;
    color: var(--text-color); ;
}
.subjects-bg {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
}
/* Subject Grid */
.subjects-grid {
    width: 95%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: stretch;
    padding-bottom: 20px;
}

/* Subject Card */
.subject-card {
    background-color: var(--surface);;
    border-radius: 15px;
    border: 1px solid #1e90ff;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    max-width: 390px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subject-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background-color: #1e8fff0c;
}

/* Card Icon */
.card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background-color: rgba(29, 115, 245, 0.075);
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 16px;
}

/* Card Title */
.card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Card Meta */
.card-meta {
    font-size: 13px;
    color: #555;
}

/* Arrow */
.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    color: #1e90ff;
    transition: transform 0.3s ease;
}

.subject-card:hover .card-arrow {
    transform: translateX(4px);
}
/* QUIZ.HTML --------------------- */

.sual-bg {
    height: 100vh;
    width: 95%;
    min-width: 300px;
    max-width: 600px;
    background-color: var(--surface);;
}
.exit-bg {
    padding-top: 20px;
    padding-left: 30px;
}
#left-arrow {
    text-decoration: none;
    font-size: 25px;
    color: var(--text-color);
}
.top-part {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--surface);
}
.fenn-id {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.progress-bar {
    width: 90%;
    background: var(--surface2);
    border-radius: 5px;
    margin: 10px 0;
    height: 10px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
#progress-fill {
    transition: width 0.4s cubic-bezier(.4,0,.2,1);
    background: var(--progress-color);
}
.sual-sayi {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}
/* Timer Dizaynı */
#timer-box {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--surface2);
    color: #1e90ff;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px; /* Sual sayı ilə ara məsafəsi */
}

#timer-icon {
    font-size: 16px;
}

.fenn-id h1 {
    width: 70%;
    font-size: 24px;
}
#question-counter {
    padding: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 50px;
    box-sizing: border-box;
    background-color: var(--surface2);
    width: max-content;
}
.bottom-part {
    height: 500px;
    width: 100%;
    background-color: var(--surface);
}
.sual-word, .sual-text-bg {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--surface);
}
.sual-word p, #sual-text {
    width: 90%;
    font-size: 18px;
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
    padding-top: 20px;
    background-color: var(--surface);
}
.sual-word p {
    padding-top: 0;
}
.options {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    background-color: var(--surface);
}
.option-btn {
    height: auto;
    width: 95%;
    background-color: var(--surface);;
    color: var(--text-color);;
    border: 1px solid #1e90ff;
    display: flex;
    justify-content: left;
    text-align: left;
    font-size: 15px;
    padding: 12px 20px;
}
.quiz-buttons-bg {
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 10px;
    justify-content: right;
    background-color: var(--surface);
}
#report {
    background-color: var(--surface);
    width: 30px;
    position: relative;
    left: 10px;
}
#report:hover {
    transform: translateY(-1px);
}
#report img {
    width: 25px;
    height: 25px;
    margin-top: -2px;
    filter: invert(0);
}
/* Şikayət edilən sualın görünüşü */
.reported-question-box {
    background-color: rgba(30, 144, 255, 0.08);
    padding: 15px;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
    color: var(--text-color);
    border: 1px dashed rgba(30, 144, 255, 0.4);
    max-height: 90px;
    overflow-y: auto;
}

/* Problemin yazılacağı mətn qutusu */
.report-textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 1px solid rgba(30, 144, 255, 0.4);
    border-radius: 10px;
    font-size: 14px;
    background: transparent;
    color: var(--text-color);
    resize: none; /* Ölçüsünün dəyişdirilməsinin qarşısını alır */
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.report-textarea:focus {
    border-color: #1e90ff;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

/* Şikayət modalı daxilində başlıqlar (Label) */
.report-label {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.8;
    color: var(--text-color);
    display: block;
    text-align: left;
    margin-bottom: 8px;
}
.option-btn.correct {
    background-color: var(--correct); 
    border-color: #2ecc71;
}

.option-btn.wrong {
    background-color: var(--wrong);
    border-color: #e74c3c;
}
.options.disabled {
    pointer-events: none;
}

button:disabled {
    background-color: var(--surface2) !important;
    color: var(--text-color);
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}
.result-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 500px;
    margin:20px auto;
    padding-bottom: 30px;
}

.result-title {
    font-size: 24px;
    font-weight: 800;
    margin: 30px 0 5px 0;
    color: var(--text-color);;
}

.result-subject {
    font-size: 14px;
    color: #777;
    margin: 0 0 20px 0;
}

.stats-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    width: 100%;
    background-color: var(--surface);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.stat-row {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    font-weight: 500;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-count {
    font-weight: 700;
    color: var(--text-color);;
}

.stat-count.green-text {
    color: #2ecc71;
}

.dot {
    font-size: 18px;
    margin-right: 12px;
    vertical-align: middle;
    line-height: 0;
}

.dot-blue {
    color: #1e90ff;
}

.dot-red {
    color: #ff4757;
}

.dot-grey {
    color: #dcdde1;
}

.dot-green {
    color: #2ecc71;
}

.result-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    width: 100%;
}

.btn-blue {
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    transition: transform 0.2s;
}

.btn-blue:hover {
    transform: translateY(-2px);
}

.link-blue {
    text-decoration: none;
    color: #1e90ff;
    font-weight: 600;
    font-size: 16px;
}

.circle-progress-container {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    border: 5px solid #f3f3f3;
    position: relative;
}
.circle-progress {
    width: 160px;  
    height: 160px;
    border-radius: 50%;
    background-color: #e6e6e6;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    min-width: 160px; 
    min-height: 160px;
    flex-shrink: 0; 
}

.circle-progress::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: var(--progress-color);
    mask: conic-gradient(#000 var(--degrees, 0deg), transparent 0deg);
    -webkit-mask: conic-gradient(#000 var(--degrees, 0deg), transparent 0deg);
    z-index: 1;
}

.circle-progress::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: var(--surface);
    z-index: 2;
}
.progress-value {
    position: relative;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-color);;
    z-index: 3; 
}
/* LOGIN SIGNUP STYLES */

@media (max-width: 768px) {
    .subjects-grid {
        grid-template-columns: 1fr;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .subject-card {
        width: 100%;
    }
    .header-bg, .infotext-bg, .search-bg{
        width: 90%;
    }
    .logo {
        display: none;
    }
    .main-content, .main-background {
        margin-left: 0;
        width: 100%;
    }
    .profile-container, .giris-container {
        padding: 25px 20px;
    }
    .profile-container {
        height: 100%;
    }
    .profile-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .action-buttons-lod{
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }

    .btn-save, .btn-logout, .btn-delete {
        width: 100%;
        text-align: center;
    }
    .action-modal {
        width: 95%;
        box-sizing: border-box;
    }
    .site-footer {
        margin-left: 0px;
        margin-top: 50px;
    }
    #menu-bar.hidden {
        left: -250px !important;
    }
    .menu-btn-bg {
        display: flex;
    }
    #menu-toggle {
        border-radius: 0;
        background-color: transparent;
        height: auto;
        width: 90px;
    }
    body.dark-theme #menu-toggle img {
        filter: invert(1);
    }
    #menu-bar {
        margin: 0;
        border-top-right-radius: 30px;
    }
    #menu-bar a {
        display: flex;
    }
    .message-bar {
        width: 65%;
    }
    .haveac p {
        font-size: 14px;
    }
}