/* 2000-yillar uslubidagi CSS */

body {
    background-color: #D8DFEA; /* O'sha davrning fon rangi */
    font-family: "Lucida Grande", Verdana, Arial, Sans-Serif;
    font-size: 12px;
    color: #333;
    margin: 0;
    padding: 20px 0;
}

a {
    text-decoration: none;
    color: #3B5998; /* Facebook havolalari rangi */
}

a:hover {
    text-decoration: underline;
}

/* Asosiy jadval strukturasi (o'sha paytda shunday qilingan) */
.main_table {
    width: 760px;
    background-color: #FFFFFF;
    border: 1px solid #D8DFEA;
    text-align: left;
}

/* Header */
.header {
    background-color: #6D84B4; /* To'qroq yashil/ko'k qism */
    color: white;
    padding: 10px 15px;
    height: 50px;
}

.logo_area {
    display: flex;
    flex-direction: column;
}

.logo_text {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: -1px;
}

.Slogan_text {
    font-size: 11px;
    font-style: italic;
}

/* Sidebar */
.sidebar {
    width: 180px;
    background-color: #F7F7F7;
    vertical-align: top;
    padding: 10px;
    border-right: 1px solid #CCC;
}

.menu_box {
    margin-bottom: 15px;
}

.menu_header {
    background-color: #D8DFEA;
    font-weight: bold;
    padding: 3px 5px;
    border-bottom: 1px solid #BfCbd5;
}

.sidebar ul {
    margin: 0;
    padding: 5px 0;
    list-style-type: none;
}

.sidebar li {
    padding: 3px 0;
}

.sidebar li a.active {
    font-weight: bold;
    color: #333;
}

.stats_box {
    text-align: center;
    margin-top: 20px;
}

.stat_number {
    font-size: 36px;
    color: #6D84B4;
    font-weight: bold;
}

.stat_label {
    font-size: 10px;
    text-transform: uppercase;
    color: #666;
}

/* Content */
.content {
    vertical-align: top;
    padding: 15px;
}

.post_box {
    background-color: #FFF;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    overflow: hidden;
}

.post_header {
    background-color: #F2F2F2;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    padding: 5px;
}

.post_content {
    padding: 10px;
    line-height: 1.4em;
}

.post_content ul {
    margin: 5px 0;
    padding-left: 20px;
}

/* Ajratilgan (Ro'yxatdan o'tish) quti */
.highlight_box {
    border: 2px solid #8CBF65; /* Och yashil chegara */
}

.highlight_box .post_header {
    background-color: #E8F5E9; /* Och yashil fon */
    color: #2E7D32;
}

/* Forma ichidagi jadval */
.form_table {
    width: 100%;
    margin-top: 10px;
}

.form_table .label {
    text-align: right;
    width: 40%;
    padding-right: 10px;
    font-weight: bold;
    font-size: 11px;
}

.form_table .input input, 
.form_table .input select {
    width: 200px;
    border: 1px solid #666;
    padding: 2px;
    font-family: inherit;
}

.submit_btn {
    background-color: #6D84B4;
    color: white;
    border: 1px solid #3B5998;
    font-weight: bold;
    cursor: pointer;
    padding: 2px 10px;
    margin-top: 5px;
}

.submit_btn:hover {
    background-color: #5C7099;
}

/* Footer */
.footer {
    font-size: 10px;
    color: #777;
    padding: 10px;
    border-top: 1px solid #D8DFEA;
    background-color: #F7F7F7;
}

/* Mobil qurilmalar uchun moslashuv */
@media screen and (max-width: 600px) {
    .main_table {
        width: 100% !important; /* Ekran kengligini to'liq egallaydi */
    }

    .sidebar {
        display: none; /* Telefonda yon menyuni yashiramiz, joy tejash uchun */
    }

    .content {
        padding: 10px;
    }

    .form_table .label {
        width: 100%;
        display: block;
        text-align: left;
        margin-bottom: 5px;
    }

    .form_table .input input, 
    .form_table .input select {
        width: 100%; /* Inputlar ekranni to'ldiradi */
        box-sizing: border-box;
    }

    .header {
        height: auto;
        padding: 15px;
    }
}