﻿#naspLauncher {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;
    font-family: Arial, Helvetica, sans-serif;
}

#naspLauncherPanel {
    width: 270px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(0,0,0,.28);
    border: 2px solid #fff;
    overflow: hidden;
    margin-bottom: 10px;
    display: none;
}

#naspLauncher.open #naspLauncherPanel {
    display: block;
}

.launcher-header {
    background: #1e5696;
    color: #fff;
    padding: 16px 18px;
}

    .launcher-header.test {
        background: #b00020;
    }

.launcher-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.launcher-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 500;
    opacity: .9;
    margin-top: 3px;
}

.launcher-actions {
    padding: 10px;
    background: #f8f8f8;
}

.launcher-action {
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
    border: 0;
    background: #fff;
    color: #333;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    cursor: pointer;
}

    .launcher-action:hover {
        background: #eef5ff;
        color: #1e5696;
    }

    .launcher-action.warning {
        background: #fff0f3;
        color: #b00020;
    }

        .launcher-action.warning:hover {
            background: #ffe3e9;
        }

.launcher-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e5696;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex: 0 0 28px;
}

.launcher-action.warning .launcher-icon {
    background: #b00020;
}

.launcher-footer {
    padding: 8px 10px 12px 10px;
    background: #f8f8f8;
    font-size: 12px;
    color: #666;
    text-align: center;
}

#naspLauncherButton {
    float: right;
    min-width: 210px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #1e5696;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.28);
    padding: 0;
    cursor: default;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    overflow: hidden;
    opacity: .85;
}

    #naspLauncherButton.test {
        background: #b00020;
    }

    #naspLauncherButton:hover {
        opacity: 1.0;
    }
#naspLauncher.open #naspLauncherButton {
    opacity: 1.0;
}
.launcher-button-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px 14px;
    cursor: pointer;
    flex: 1 1 auto;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}

    .launcher-button-main:hover {
        background: rgba(255,255,255,.12);
    }

.hamburger {
    font-size: 20px;
    line-height: 1;
}

.launcher-button-text {
    text-align: left;
    line-height: 1.05;
    font-size: 17px;
    font-weight: 800;
}

    .launcher-button-text span {
        display: block;
        font-size: 12px;
        font-weight: 500;
        opacity: .9;
        margin-top: 2px;
    }

.launcher-close {
    width: 44px;
    border: 0;
    border-left: 1px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.18);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}

    .launcher-close:hover {
        background: rgba(0,0,0,.3);
    }

#naspLauncherRestore {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99999;
    display: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #1e5696;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.28);
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    font-family: Arial, Helvetica, sans-serif;
}

    #naspLauncherRestore.test {
        background: #b00020;
    }

@media (max-width: 800px) {
    #naspLauncher {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    #naspLauncherPanel {
        width: auto;
    }

    #naspLauncherButton {
        min-width: 0;
        width: 100%;
    }

    #naspLauncherRestore {
        right: 14px;
        bottom: 14px;
    }
}
