/*axtarilanlar start*/
.pagination {
    margin: 25px 0;
    text-align: center;
    user-select: none;
}
.pagination a, .pagination span {
    display: inline-block;
    margin: 0 3px;
    padding: 6px 12px;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #333;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}
.pagination a:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}
.pagination a.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
    font-weight: bold;
}
.pagination span {
    color: #999;
    padding: 6px 10px;
    border: none;
}
.pagination a:first-child,
.pagination a:last-child {
    font-weight: bold;
}
/*axtarilanlar end*/

/*yeni bolme start*/
.new-label {
  color: red;
  font-weight: bold;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
/*yeni bolme end*/


/*publication start*/
/* Əsas konteyner */
.publication_group {
    margin: 25px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Başlıq */
.publication_label, label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    /*border-bottom: 2px solid #eee;*/
}

/* Razılaşma bloku */
.publication_agreement {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.publication_agreement:hover {
    background: #f1f3f4;
    border-color: #c6d2e1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Checkbox konteyneri */
.publication_checkbox_container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 65px;
    min-height: 45px;
    user-select: none;
    gap: 20px;
}

/* Gizli checkbox */
.publication_checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Xüsusi böyük checkbox */
.publication_checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    background-color: #fff;
    border: 3px solid #bdc3c7;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Hover effekti */
.publication_checkbox_container:hover .publication_checkmark {
    border-color: #3498db;
    transform: scale(1.05);
    box-shadow: 0 5px 12px rgba(52, 152, 219, 0.2);
}

/* Check olunanda effekt */
.publication_checkbox:checked ~ .publication_checkmark {
    background-color: #2ecc71;
    border-color: #27ae60;
    transform: scale(1.1);
}

/* Check işarəsi */
.publication_checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 15px;
    top: 8px;
    width: 12px;
    height: 20px;
    border: solid white;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}

.publication_checkbox:checked ~ .publication_checkmark:after {
    display: block;
    animation: publication_checkPop 0.3s ease;
}

/* Check animasiyası */
@keyframes publication_checkPop {
    0% { transform: rotate(45deg) scale(0.5); opacity: 0; }
    70% { transform: rotate(45deg) scale(1.2); }
    100% { transform: rotate(45deg) scale(1); opacity: 1; }
}

/* Mətn bloku */
.publication_text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #34495e;
    padding-top: 0;
    text-align: justify;
   /* column-count: 2;*/
    column-gap: 30px;
    column-rule: 1px dashed #ddd;
}

/* Tablet/mobil uyğunluq */
@media (max-width: 768px) {
    .publication_text {
        column-count: 1;
        column-gap: 0;
        column-rule: none;
    }
    
    .publication_checkbox_container {
        padding-left: 55px;
        gap: 15px;
    }
    
    .publication_checkmark {
        height: 40px;
        width: 40px;
    }
    
    .publication_checkmark:after {
        left: 13px;
        top: 6px;
    }
}
/*publication end*/
