@import "./constants.scss";

.bg-info {
    background-color: $main-theme-color !important;
}

.navbar {
    padding-bottom: 0;
    padding-top: 0;
    min-height: inherit;
    
    .navbar-nav {
        margin-top: 5px;
        
        .nav-link {
            font-size: 14px !important;
            text-transform: none !important;
            background-color: transparent !important;
            box-shadow: none !important;
            transition: none !important;
        }

        .nav-item.active {
            border-bottom: 3px solid #fff;
            position: relative;
            font-weight: 500;
        }

        .nav-item {
            min-width: 100px;
            text-align: center;
            margin-bottom: 0;
            border-bottom: 3px solid transparent; /* Invisible border to avoid height change */
            
            &:hover {
                border-bottom-color: #fff;
                font-weight: 500;
            }
        }
    }

    .istkr-pro-features {
        display: flex;
        align-items: center;
        text-transform: uppercase;
        font-size: 12px;
        border: 1px solid #f1f1f1;
        border-radius: 5px;
        padding: 0 10px;
        text-decoration: none;
        justify-content: center;
        color: #1d2327 !important;
        background: #fff;
        opacity: 0.9;
        margin: 0 auto;
        max-width: 200px;
        &:hover {
            color: #fff;
            opacity: 1;
            transition: all 0.5s;
        }

        img {
            width: 30px;
            filter: brightness(1.1) saturate(1.1);
            margin-left: 10px;
        }
    }
}

// Styling for the banner component
.isrkr-banner {
    background-color: #d0e9ff;
    border: 1px solid #e0e0e0; 
    border-radius: 5px; 
    padding: 0.5rem 1rem;
    font-weight: 400;

    // Title styling
    .isrkr-banner-title {
        color: #333333;
        margin: 0;
        font-weight: 400;

    }

    // Button styling
    .isrkr-banner-btn {
        background-color: #4f6df5;
        color: #fff;
        border: none;
        transition: background-color 0.3s;
        font-size: 14px;
        font-weight: 400;
        &:hover {
            background-color: #1e60c6;
        }
    }

    // Collapsible text styling
    #isrkr_updateMessage {
        margin-top: 1rem;
        font-size: 14px;

        .isrkr-text {
            color: #333;
            margin-bottom: 1rem;
            font-weight: 400;
            font-size: 14px;

            ul {
                padding-left: 1.5rem;
                list-style-type: disc;
                font-weight: 400;
            }

            a {
                color: #3B82F6;
                text-decoration: none;
                font-weight: 500;

                &:hover {
                    text-decoration: underline;
                }
            }
        }
    }
}
