/* custom-download.css */
.pm-download-container {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    width: calc(100% - 32px);
    max-width: 600px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    margin: 12px auto;
}

.pm-download-header {
    margin-bottom: 14px;
    text-align: center;
}

.pm-download-title {
    font-size: 18px; 
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

.pm-download-version {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.pm-download-info {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 14px;
}

.pm-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #f7f7f7;
    flex: 1;
}

.pm-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #34c759;
    color: white;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
}

.pm-download-btn:hover {
    background: #2daf50;
}

.pm-download-btn:active {
    background: #269945;
}

.pm-download-btn.disabled {
    background: #999;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .pm-download-container {
        padding: 14px;
        width: calc(100% - 24px);
    }
    
    .pm-download-title {
        font-size: 17px;
    }
    
    .pm-download-info {
        flex-direction: column;
        gap: 8px;
    }
}