.ddw-container {
    width: 100%;
}

.ddw-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ddw-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border: 1px solid #e0e0e0;
    background: #fff;
}


.ddw-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.ddw-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73a7;
}

.ddw-icon img,
.ddw-icon svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.ddw-icon-mask {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.ddw-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a73a7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ddw-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: 20px;
}

.ddw-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73a7;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.ddw-action-btn:hover {
    opacity: 0.7;
}

.ddw-action-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .ddw-item {
        padding: 15px;
    }
    
    .ddw-left {
        gap: 10px;
    }
    
    .ddw-name {
        font-size: 13px;
    }
    
    .ddw-right {
        gap: 15px;
        margin-left: 10px;
    }
    
    .ddw-icon img,
    .ddw-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .ddw-action-btn svg {
        width: 18px;
        height: 18px;
    }
}
