/*
* File Name: crew-mgr-ws-profile.css
* Directory: /css
* Version: 2026.1.0
* Updated: 9/26/2026
* Description: Styles used by Crew Manager Plugin enqued by crew-manager.php
* Author: Bill Kneller
* Author URI: https://crew-mgr.com
*
* 9/26/2026 2026.1.0 new baseline adds pink button styles for world sailing lookup used on admin user edit profile and front end links on regatta-weight-report
*/

/* ==========================================================================
   Crew Manager - Profile Lookup Buttons & Links
   ========================================================================== */

/* Base Pink Action Button (Form Profiles) */
.cm-pink-btn {
    display: inline-block;
    padding: 6px 12px;
    background-color: #e20074;
    color: #ffffff;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.cm-pink-btn:hover,
.cm-pink-btn:focus {
    background-color: #b8005e;
    color: #ffffff;
    text-decoration: none;
}

/* Visibility State Classes */
.cm-hide {
    display: none !important;
}

.cm-show-inline {
    display: inline-block !important;
}

/* Reusable World Sailing Text Link (for non-button contexts on other pages) */
.cm-ws-link {
    color: #e20074;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.cm-ws-link:hover,
.cm-ws-link:focus {
    color: #b8005e;
    text-decoration: none;
}