/* IPコピー用ボタン */
.btn-ip-copy {
    margin-left: 14px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 16px;
    cursor: pointer;
    font-size: 0.6em;
    line-height: 1.2;
}

/* CLIコピー用ボタン */
.btn-cli-copy {
    margin-left: 14px;
    background: #444;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 16px;
    cursor: pointer;
    font-size: 0.97em;
}

/* 詳細タイトル */
.details-title {
    font-size: 1.2em;
}

/* コマンド説明 */
.cli-desc {
    font-size: 0.97em;
    color: #666;
    margin-top: 10px;
}
/* cli-section 用スタイル */
.cli-section {
    background: #222;
    color: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    margin-top: 12px;
    font-family: monospace;
    display: flex;
    align-items: center;
    max-width: 420px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}
.container {
    max-width: 800px;
    margin: 32px auto 0 auto;
    background: white;
    padding: 32px 24px 28px 24px;
    border-radius: 12px;
    box-shadow: 0 0 16px rgba(0,0,0,0.08);
}
.ip-display {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
    background: #e9ecef;
    padding: 16px 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}
.ip-display:hover {
    background: #dee2e6;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 28px 0 24px 0;
}
.card {
    background: #f8f9fa;
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-width: 200px;
}
.details {
    text-align: left;
    margin: 32px 0 0 0;
    background: #f8f9fa;
    padding: 10px 18px 10px 18px;
    border-radius: 8px;
}
.footer {
    margin-top: 32px;
    font-size: 0.9em;
    color: #666;
}
.toast {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
@media (max-width: 600px) {
    .container {
        margin: 0 !important;
        border-radius: 0 !important;
    }
    .ip-display {
        font-size: 1.7em;
        padding: 10px 8px;
    }
    #ip-copy-btn {
        font-size: 0.7em !important;
        padding: 5px 10px !important;
    }
    .cli-section {
        font-size: 1em !important;
        padding: 10px 10px !important;
    }
    #cli-copy-btn {
        font-size: 0.9em !important;
        padding: 5px 10px !important;
    }
}
