.logo{width: 190px; height: auto}
.text-justify{text-align: justify;}
.form-control{border: 1px solid #607D8B !important;}
.require-color{color: #CC0000;}
.text-left { text-align:left !important; }
/*Submit paper*/
.bg-card{background-color: #283a42 !important}
/*paper-detail*/
.author-details p { padding: 5px 0px; }
.author-details h2{ font-weight: 800; font-size: 20px; letter-spacing: 0.5px; text-transform: capitalize;}
.paper-info h5{ padding:5px 0px; font-weight: 800; font-size: 20px; letter-spacing: 0.5px; }
.paper-info p { text-align:justify; }
.citations h5{ padding:5px 0px; font-weight: 800; font-size: 20px; letter-spacing: 0.5px; }

/*Current Issue*/
.paper-title {color: #000 !important; font-weight: 700; font-size: 18px; letter-spacing: 0.4px;text-transform: capitalize;}

   .steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 40px;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #dee2e6;
    z-index: 1;
}

.progress-line {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    height: 4px;
    background: #28a745;
    z-index: 2;
    transition: width 0.8s ease-in-out;
    width: 0;
}

.step {
    position: relative;
    text-align: center;
    z-index: 3;
    flex: 1;
}

.circle {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 50%;
    background: #dee2e6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.step.completed .circle {
    background: #28a745;
    color: white;
}

.step.active .circle {
    background: #007bff;
    color: white;
    box-shadow: 0 0 12px rgba(0,123,255,0.6);
}

.label {
    margin-top: 8px;
    font-weight: 500;
}
.step.active.reject   .circle { background: #dc3545; color:#fff; box-shadow: 0 0 12px rgba(220,53,69,.6); }
.step.active.revision .circle { background: #fd7e14; color:#fff; box-shadow: 0 0 12px rgba(253,126,20,.6); }


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}