.wds-download-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.wds-download-btn {
    padding: 20px;
    background-color: #2d3748;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.wds-download-btn:hover {
    background-color: #4a5568;
}

.wds-download-btn:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
}

.wds-download-loading {
    margin-top: 10px;
    color: #4299e1;
}

.wds-download-error {
    margin-top: 10px;
}

.wds-dialog-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    cursor: pointer;
}
.wds-dialog-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 450px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    padding: 0;
    box-sizing: border-box;
}
.wds-dialog-header {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wds-dialog-icon {
    font-size: 1.5rem;
    margin-right: 0.8rem;
}
.wds-dialog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}
.wds-dialog-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    padding: 0 0.5rem;
}
.wds-dialog-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}
.wds-dialog-body p {
    margin: 0;
    color: #555;
}
.wds-dialog-loading .wds-dialog-icon {
    color: #2563eb;
}
.wds-dialog-success .wds-dialog-icon {
    color: #16a34a;
}
.wds-dialog-error .wds-dialog-icon {
    color: #dc2626;
}
.wds-dialog-close:hover{
    background-color: #fff;
    color: #1d499e;
}
.floating-box {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    padding: 20px;
    z-index: 99999;
    display: block;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
    padding: 0;
    line-height: 1;
}

.close-btn:hover {
    color: white;
}

.floating-icon {
    width: 120px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
}
.wds-ads-slider-box{
    width: 100%;
    display: flex;
    justify-items: center;
    padding: 0 15px;
    margin: 20px 0;
}
.slider-btn{
    width:15%;
    max-width: 400px;
    height: 50px;
    padding: 15px;
    border-radius: 30px;
    margin: 0 auto;
}
.floating-content h4 {
    margin: 0 0 20px 0;
    font-size: 17px;
    color: #222;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.floating-btn {
    display: block;
    width: 100%;
    background: #2563eb;
    color: white;
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.floating-btn:hover {
    background: #1d4ed8;
    color: white;
}

@media (max-width: 480px) {
    .wds-dialog-container {
        width: 80%;
    }
    .floating-box {
        width: calc(100% - 40px);
        left: 20px;
        bottom: 20px;
    }
    .wds-dialog-header {
        padding: 0.8rem;
    }
    .wds-dialog-body {
        padding: 1rem;
    }
    .wds-dialog-title {
        font-size: 1rem;
    }
    .wds-dialog-icon {
        font-size: 1.2rem;
    }
}