body {
    text-align: justify;
}
     I
 .obj_article_details .abstract,
.obj_article_details .item > :last-child {
        text-align: justify;
}


.myTable {
    width: 100%;
    border-collapse: collapse;
}

.myTable th, .myTable td {
    border: 1px solid black;
}
/* Peer Review Process Styles */

.peer-review-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #1f2937;
}

.peer-review-section h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0f2a6d;
    margin-bottom: 10px;
}

.peer-review-section .subtitle {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 60px;
}

.review-timeline {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 30px 20px;
    width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #e8f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-icon svg {
    width: 28px;
    height: 28px;
    stroke: #1d4ed8;
}

.review-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

.review-card span {
    font-size: 15px;
    color: #374151;
}

@media (max-width: 1024px) {
    .review-timeline {
        justify-content: center;
    }
}
