.windowModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.windowModal.active {
    opacity: 1;
    visibility: visible;
}

.windowModal-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 450px;
    max-width: 90%;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.windowModal.active .windowModal-content {
    transform: translateY(0);
}

.windowModal-header {
    background: #0067b8;
    color: white;
    padding: 20px;
}

.windowModal-header h3 {
    font-weight: 600;
    font-size: 20px;
    margin: 0;
}

.windowModal .windowModal-body {
    padding: 25px;
    text-align: center;
}

.download-options {
    margin: 20px 0;
}

.windowModal .option-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.windowModal .option-item:hover {
    border-color: #0067b8;
    background: #f0f7ff;
}

.windowModal .option-item.selected {
    border-color: #0067b8;
    background: #f0f7ff;
}

.windowModal .option-icon {
    width: 40px;
    height: 40px;
    background: #e0f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #0067b8;
    font-size: 18px;
}

.windowModal .option-info {
    flex: 1;
}

.windowModal .option-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}

.windowModal .option-size {
    font-size: 12px;
    color: #777;
}

.windowModal .windowModal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 15px 25px;
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

.windowModal .modal-btn {
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

.windowModal .modal-btn.cancel {
    background: white;
    color: #333;
}

.windowModal .modal-btn.cancel:hover {
    background: #f5f5f5;
}

.windowModal .modal-btn.confirm {
    background: #0067b8;
    color: white;
    border-color: #0067b8;
}

.windowModal .modal-btn.confirm:hover {
    background: #005da6;
}