.back-arrow-inline {
    width: 40px;
    height: 40px;
    background: rgba(56, 56, 56, 0.632);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.back-arrow-inline:hover {
    background: rgba(56, 56, 56, 0.8);
    transform: scale(1.1);
    color: #007bff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.back-arrow-inline i {
    font-size: 18px;
}