/* Custom CSS for Single Link Consistency */

/* 1. Ensure the actual dropdown (Left Column) looks clean */
.s3-manuals-dropdown-uncode {
    width: 100%;
    height: 48px; 
    /* The default browser arrow will show here unless suppressed */
}

/* 2. Style the single link box (Right Column) for a clean border-only look */
.latest-manual-display {
    width: 100%;
    height: 48px; /* Match dropdown height */
    line-height: 48px; /* Vertically center the text */
    padding: 0 15px; /* Match dropdown padding */
    
    /* STYLING FOR BORDER-ONLY */
    border: 0.7px solid #ccc; /* Only the border */
    background-color: #ffffff; /* Transparent/White background */
    
    border-radius: 2px; /* Optional: Match dropdown rounding */
    color: #444; /* Text color */
    cursor: default;
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
    /* Removed position: relative; and the .dropdown-arrow style */
}

/* 3. Styling for the disabled state (remains the same) */
.btn-disabled {
    opacity: 0.5;
    pointer-events: none; /* Prevents button clicks when disabled */
    cursor: not-allowed;
}