.ds-woowa-container {
    margin: 15px 0;
    clear: both;
}

.ds-woowa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #25D366;
    color: white;
    border: none;
}

.ds-woowa-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
}

/* Rectangle Style */
.ds-woowa-style-rectangle {
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ds-woowa-style-rectangle .ds-woowa-icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

/* Round Style */
.ds-woowa-style-round {
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    text-align: center;
}

.ds-woowa-style-round .ds-woowa-text {
    display: none;
}

/* Square Style */
.ds-woowa-style-square {
    padding: 12px 15px;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ds-woowa-style-square .ds-woowa-icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ds-woowa-style-rectangle,
    .ds-woowa-style-square {
        width: 100%;
        text-align: center;
    }
}

/* WhatsApp icon styling */
.ds-woowa-icon svg {
    width: 20px;
    height: 20px;
}
.ds-woowa-icon svg path {
    fill:#ffffff;
}