.mcw-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.mcw-trigger-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.mcw-trigger-btn:hover {
    transform: scale(1.05);
}

.mcw-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.mcw-container.open .mcw-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mcw-container.open .mcw-trigger-btn {
    display: none; 
}

.mcw-header {
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mcw-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
	color: white;
}

.mcw-close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
	font-size: 20px;
    justify-content: center;
}
.mcw-close-btn:hover {
    opacity: 0.8;
}

.mcw-content {
    padding: 10px;
    max-height: 450px;
    overflow-y: auto;
}

.mcw-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mcw-options li {
    margin-bottom: 10px;
}

.mcw-option-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #333;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.mcw-option-link:hover {
    background-color: #f1f3f5;
    border-color: #dee2e6;
}

.mcw-icon {
    margin-right: 15px;
    font-size: 25px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mcw-details .options-title {
    font-size: 16px;
    font-weight: 600;
	line-height: normal;
}

.mcw-details p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}