/* Wrapper for the bottom buttons */
.view-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;               /* ~30px spacing between buttons */
    margin-top: 32px;
}

/* Match navbar button styling */
.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #ffffff;
    color: #17a2b8;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    white-space: nowrap;
}

.view-btn:hover {
    background: #17a2b8;
    color: #ffffff;
    border-color: #17a2b8;
    box-shadow: 0 4px 12px rgba(23,162,184,0.2);
    transform: translateY(-2px);
}

/* Wrapper for the bottom buttons - client-manager.php only */

.view-buttons-cm {
    display: flex;
    justify-content: center;
    gap: 30px;               /* ~30px spacing between buttons */
    margin-top: 32px;

}

/* Match navbar button styling */
.view-btn-cm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: #ffffff;
    color: #17a2b8;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    white-space: nowrap;
    margin: 12px 12px 12px 0px;
}

.view-btn-cm:hover {
    background: #17a2b8;
    color: #ffffff;
    border-color: #17a2b8;
    box-shadow: 0 4px 12px rgba(23,162,184,0.2);
    transform: translateY(-2px);
}
