/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
   
    
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f6f8;
    color: #222;
    line-height: 1.6;

    padding-top: 30px;   /* 👈 tepaga bo‘shliq */
}

<style>
.back-btn {
  padding: 16px 26px;
  background: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}
.back-btn:hover {
  background: #e0e0e0;
}
</style>


a {
    color: #0a58ca;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
}

/* HEADER */
header {
    text-align: center;
    margin-bottom: 25px;
}

header h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

header p {
    color: #666;
    font-size: 15px;
}

/* TABLE */
.table-wrapper {
    width: 100%;
    overflow-x: auto; /* mobile scroll */
}

.publication-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.publication-table th,
.publication-table td {
    border: 1px solid #ddd;
    padding: 12px;
    vertical-align: top;
}

.publication-table th {
    background: #f0f2f5;
    font-weight: 600;
    text-align: left;
}

.publication-table tr:nth-child(even) {
    background: #fafafa;
}

/* FOOTER */
footer {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

/* 📱 MOBILE ADAPTATION */
@media (max-width: 768px) {

    header h1 {
        font-size: 22px;
    }

    .publication-table {
        font-size: 14px;
    }

    .publication-table th,
    .publication-table td {
        padding: 8px;
    }
}

/* 📱 SMALL PHONES */
@media (max-width: 480px) {

    header p {
        font-size: 13px;
    }

    .publication-table {
        min-width: 600px;
    }
}

