.line-notify-button {
    background-color: #06C755; /* LINEグリーン */
    color: #fff;
    padding: 0.75em 1.5em;
    border-radius: 45px;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 1em auto;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.line-notify-button:hover {
    background-color: #05b14c;
    box-shadow: 0 0 0 3px rgba(6, 199, 85, 0.3);
}

.line-disconnect-button {
    background-color: #ccc;
    color: #333;
    padding: 0.75em 1.5em;
    border-radius: 45px;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 1em auto;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.line-disconnect-button:hover {
    background-color: #bbb;
    box-shadow: 0 0 0 3px rgba(150, 150, 150, 0.3);
}
.line-notify-team-name {
    text-align: center;               /* テキスト中央揃え */
    font-size: 1rem;
    margin: 2em auto;                 /* 上下に余白＋中央寄せ */
    max-width: 90%;                   /* モバイル対応 */
}
.line-notify-description {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5em;
}
