body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
.descriptionbox {
    font-size: 10pt;
    background-color: #291439;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    padding: 6px;
}
.blockquote {
    padding-left: 15px;
}
.specialtext {
    color: #FBFDD9;
}

#callusdiv {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}

.callbutton {
    display: inline-flex;
    align-items: center;
    background-color: #ff9900; /* Orange */
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 32px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.callbutton:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.callbutton .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 50px; /* Large icon */
}

.callbutton-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.callbutton-text .line1 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
	font-family: sans-serif;
}

.callbutton-text .line2 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 2px;
}

/* Badge - Rectangular Style */
.badge-rectangular {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.badge-cream {
    background-color: #fdf1cb; /* 米白色 */
    color: #5c3b28; /* 啡色 */
    border: 1px solid #D2B48C;
}

.badge-cream::before {
    content: "📷";
    margin-right: 8px;
    font-size: 14px;
}

.badge-brown {
    background-color: #5c3b28; /* 啡色 */
    color: #fdf1cb; /* 米白色 */
    border: 1px solid #A0522D;
}

.badge-brown::before {
    content: "💭";
    margin-right: 8px;
    font-size: 14px;
}

/* Blue Rounded Square Buttons - Smaller Size */
.blue-rounded {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #4b3a5a;
    border: 1px solid #666;
    color: #e3dbc6;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blue-rounded:hover {
    background: #5A5A5A;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.blue-rounded.active {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

/* Blue Rounded Video Buttons - Smaller Size */
.blue-rounded-video {
    min-width: 38px;
    height: 24px;
    padding: 0 6px;
    border-radius: 6px;
    background: #4b3a5a;
    border: 1px solid #666;
    color: #e3dbc6;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}

.blue-rounded-video:hover {
    background: #5A5A5A;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.blue-rounded-video.active {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

.blue-rounded-video:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.blue-rounded-video:active {
    transform: translateY(0);
}

/* Stop Button */
.blue-rounded-stop {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #666;
    border: 1px solid #888;
    color: #FFF;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blue-rounded-stop:hover {
    background: #777;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.blue-rounded-stop.stop-active {
    background: #CC0000;
    border-color: #CC0000;
    box-shadow: 0 0 8px rgba(204, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blue-rounded-video {
        min-width: 34px;
        font-size: 10px;
        padding: 0 4px;
    }
    
    .blue-rounded, .blue-rounded-stop {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
}

/* Container Styles */
.badge-container {
    text-align: center;
    margin-bottom: 0px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

/* Optional: Hover effect for badge */
.badge-rectangular:hover {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

/* Circular New Buttons */
.circular-newbutton {
    width: 150px;
    height: 26px;
    border-radius: 4px;
    background: #5c3b28;
    color: #fdf1cb;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    padding: 0 5px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 16px rgba(92, 59, 40, 0.3);
}

/* Open for registration variant */
.circular-newbutton-open {
    width: 150px;
    height: 26px;
    border-radius: 4px;
    background: #5c3b28;
    color: #fdf1cb;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    padding: 0 5px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #fdf1cb;
    box-shadow: 0 0 15px rgba(253, 241, 203, 0.4), 0 4px 16px rgba(92, 59, 40, 0.3);
}

/* Hover effects */
.circular-newbutton:hover {
    background: #4a3024;
    transform: translateY(-1px);
}

.circular-newbutton-open:hover {
    background: #fdf1cb;
    color: #5c3b28;
    border-color: #5c3b28;
    box-shadow: 0 0 20px rgba(253, 241, 203, 0.6), 0 6px 20px rgba(92, 59, 40, 0.4);
    transform: translateY(-2px);
}

/* Active effects */
.circular-newbutton:active,
.circular-newbutton-open:active {
    transform: translateY(0);
}

/* Circular Menu Buttons */
.circular-menubutton {
    width: 150px;
    height: 26px;
    border-radius: 4px;
    background: #5c3b28;
    color: #fdf1cb;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    padding: 0 5px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 16px rgba(92, 59, 40, 0.3);
    margin-right: 5px;
}

/* Circular Menu Buttons 2 - Reversed Colors */
.circular-menubutton2 {
    width: 150px;
    height: 26px;
    border-radius: 4px;
    background: #fdf1cb;
    color: #5c3b28;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    padding: 0 5px;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 16px rgba(253, 241, 203, 0.3);
    margin-right: 5px;
}

/* Hover effects */
.circular-newbutton:hover {
    background: #4a3024;
    transform: translateY(-1px);
}

.circular-newbutton-open:hover {
    background: #fdf1cb;
    color: #5c3b28;
    border-color: #5c3b28;
    box-shadow: 0 0 20px rgba(253, 241, 203, 0.6), 0 6px 20px rgba(92, 59, 40, 0.4);
    transform: translateY(-2px);
}

.circular-menubutton:hover {
    background: #4a3024;
    transform: translateY(-1px);
}

.circular-menubutton2:hover {
    background: #f5e8a8;
    transform: translateY(-1px);
}

/* Active effects */
.circular-newbutton:active,
.circular-newbutton-open:active,
.circular-menubutton:active,
.circular-menubutton2:active {
    transform: translateY(0);
}

/* Link styling for clickable buttons - REMOVE ALL UNDERLINES */
.circular-newbutton-link,
.circular-newbutton-open-link,
.circular-menubutton-link,
.circular-menubutton2-link {
    text-decoration: none !important;
    display: inline-block;
    border: none;
    outline: none;
}

.circular-newbutton-link:hover,
.circular-newbutton-open-link:hover,
.circular-menubutton-link:hover,
.circular-menubutton2-link:hover {
    text-decoration: none !important;
}

.circular-newbutton-link:visited,
.circular-newbutton-open-link:visited,
.circular-menubutton-link:visited,
.circular-menubutton2-link:visited {
    text-decoration: none !important;
}

.circular-newbutton-link:active,
.circular-newbutton-open-link:active,
.circular-menubutton-link:active,
.circular-menubutton2-link:active {
    text-decoration: none !important;
}

.circular-newbutton-link:focus,
.circular-newbutton-open-link:focus,
.circular-menubutton-link:focus,
.circular-menubutton2-link:focus {
    text-decoration: none !important;
    outline: none;
}