.view-info-box {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    /* more space inside */
    margin-top: 20px;
    /* space below the header */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    
    border: 1px solid #e0e0e0;
    /* light border for separation */
}

.view-info-box p {
    margin: 10px 0;
    /* spacing between lines */
    font-size: 1rem;
    color: #333;
    
}

.view-info-box p strong {
    display: inline-block;
    /* ensures label and value align nicely */
    width: 100px;
    /* fixed width for labels */
    color: #555;
    /* slightly lighter color for labels */
}