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

/* Shriftlar (Google Fonts: Playfair Display va Roboto) */
body {
    font-family: 'Roboto', sans-serif; /* Asosiy shrift */
    background-color: #f4f7f9;
    color: #333;
    line-height: 1.6;
}

/* Katta sarlavha shrifti */
h1, h2 {
    font-family: 'Playfair Display', serif; /* Chiroyli, ko'zga tashlanadigan shrift */
    color: #007bff; /* Moviy rang */
    text-align: center;
    margin-bottom: 20px;
}

.header {
    background-color: #ffffff;
    padding: 30px 20px;
    border-bottom: 5px solid #007bff;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header p {
    font-size: 1.1em;
    color: #555;
}

/* Bo'limlar uslubi */
section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 30px auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* YAGONI YANGI QISM: CHAT SIMULATSIYASI */
.chat-simulation {
    background-color: #e6e6e6; /* Chat uchun boshqacha fon */
}

.chat-window {
    max-width: 500px; /* Chat oynasining kengligi */
    margin: 0 auto;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #ccc;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.message {
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 20px;
    max-width: 80%;
    font-size: 1em;
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.user-name {
    font-weight: bold;
    margin-right: 5px;
}

/* 1-foydalanuvchi (Chap tomonda) */
.sender-1 {
    background-color: #dcf8c6; /* Telegramdagi kabi yashil rang */
    align-self: flex-start;
    float: left; /* Chapga surish */
    clear: both; /* Oldingi xabarni tozalash */
    border-bottom-left-radius: 5px; /* Uchburchak effektiga o'xshatish */
}

/* 2-foydalanuvchi (O'ng tomonda) */
.sender-2 {
    background-color: #e3f2fd; /* Telegramdagi kabi moviy rang */
    align-self: flex-end;
    float: right; /* O'ngga surish */
    clear: both;
    border-bottom-right-radius: 5px; /* Uchburchak effektiga o'xshatish */
}

.note-chat {
    clear: both;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #555;
}


/* 3) Ijtimoiy tarmoqlar uslubi */
.social-platforms {
    text-align: center;
}

.platforms-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.platform {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.platform:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.telegram { background-color: #0088cc; }
.instagram { background-color: #e4405f; }
.whatsapp { background-color: #25d366; }
.facebook { background-color: #4267b2; }

.note {
    margin-top: 15px;
    font-style: italic;
    color: #777;
}

/* 1) Qisqartma so'zlar uslubi */
.short-forms-section {
    clear: both; /* Chatdan keyin tozalash */
}
.short-forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adaptiv setka */
    gap: 15px;
    margin-top: 20px;
}

.short-form {
    background-color: #e0f7fa; /* Och moviy fon */
    border: 2px solid #00bcd4;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700; /* Qalinroq shrift */
    text-align: center;
    transition: background-color 0.3s;
}

.short-form:hover {
    background-color: #b2ebf2;
}


/* 2) TABLE uslubi */
.dictionary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 1em;
}

.dictionary-table thead tr {
    background-color: #007bff; /* Sarlavha uchun moviy fon */
    color: white;
    text-align: left;
}

.dictionary-table th, .dictionary-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}
.dictionary-table tbody tr:nth-child(even) {
    background-color: #f2f9ff; /* Har bir ikkinchi qator uchun fon */
}

.dictionary-table tbody tr:hover {
    background-color: #e6f7ff; /* Hover effekti */
    cursor: pointer;
}

/* Footer uslubi */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 40px;
    font-size: 0.9em;
}

/* Mobil moslashuv (kichik ekranlarda chatni yaxshilash uchun) */
@media (max-width: 600px) {
    .chat-window {
        max-width: 100%;
        padding: 5px;
        border-radius: 0;
    }

    .message {
        max-width: 95%;
        font-size: 0.9em;
    }
}
