	.adbot-fab-host {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.adbot-fab-box {
    width: 40px;
    min-height: 40px;
    max-height: 40px;
    border-radius: 50%;
    background: #3B82F6;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    position: relative;
    transition: width 0.38s ease, min-height 0.38s ease, max-height 0.4s ease, border-radius 0.38s ease, background 0.25s ease, box-shadow 0.3s ease;
}

.adbot-fab-box.is-open {
    width: min(92vw, 300px);
    min-height: 200px;
    max-height: calc(100vh - 40px);
    border-radius: 16px;
    background: #fff;
    color: #1e293b;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
}

.adbot-fab-open {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.adbot-fab-box.is-open .adbot-fab-open {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.adbot-fab-panel {
    display: flex;
    flex-direction: column;
    padding: 16px 16px 18px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    transition: opacity 0.20s ease 0.10s, visibility 0s linear 0.25s;
}

.adbot-fab-box.is-open .adbot-fab-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0.10s, 0s;
}

.adbot-fab-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 28px;
    margin-bottom: 4px;
}

.adbot-fab-close {
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: rgba(0,0,0,0.05);
    color: #475569;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.adbot-fab-close:hover {
    background: rbga(0,0,0,0.15);
}

.adbot-fab-body {
    flex: 1;
		display: flex;
		flex-direction: column;
		gap: 12px;
}

.adbot-fab-body .adbot-fab-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    opacity: 0.8;
}

.adbot-fab-body .adbot-fab-desc {
    font-size: 13px;
    line-height: 1.55;
    opacity: 0.5;
}

.adbot-fab-body .adbot-fab-hours {
    font-size: 12px;
    opacity: 0.5;
}

.adbot-fab-btn {
    display: flex;
    align-items: center;
		justify-content: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
		text-decoration: none;
		border-radius: 4px;
    padding: 6px 0;
    font-family: inherit;
}

.adbot-fab-btn.call {
	background: #DBEAFE;
	color: #3B82F6;
	border: 1px solid #3B82F6;
}

.adbot-fab-btn.message {
    background: #EDF3F6;
    color: #7C9BAF;
	border: 1px solid #7C9BAF;
}

.adbot-fab-btn.sns {
    background: #f5f6ed;
    color: #dcc600;
	border: 1px solid #dcc600;
}

.adbot-fab-btn svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.adbot-fab-btn:hover {
    color: #1d4ed8;
}
